Scratch --A + B

New coding

Subject description:

Input two integers a, b, and the output thereof (| a |, | b | <= 10 ^ 9).

Code:

#include<stdio.h>

int  main ()

{

  int a,b;

  scanf("%d %d",&a,&b);

  printf("%d",a+b);

  return 0;

}

Guess you like

Origin www.cnblogs.com/travellersklz/p/11616094.html