Add Them Up
Limits: 1s, 512 MB
Read two integer variables, calculate their sum, and print it.
Input
The input will contain two integers A and B (A, B < 20000000).
Output
Print the sum of the two integers.
Samples
Solutions:#include<stdio.h> int main() { int a,b; scanf("%d %d",&a,&b); printf("%d",a+b);
return 0; }
0 Comments