| Add Them Up
Limits 1s, 512 MB
Read two integer variables, calculate their sum, and print it.
Input
The input will contain two integers and ().
Output
Print the sum of the two integers.
Input | Output |
---|---|
4 5 |
9 |
N.B.: It's better if you solve this by your own. Thank you!
Toph Online Judge Add Them Up Solve in C :
//Solved by Intesar#include <stdio.h>
int main() { int a,b; scanf("%d%d",&a,&b);
printf("%d",a+b); return 0;}
0 Comments