| Time Limit: | 1000MS | Memory Limit: | 1000KB |
|---|---|---|---|
| Total Submissions: | 11335 | Accepted: | 1041 |
Description:
Calculate a+b
Input:
Two integer a,b
Output:
Output a+b
Sample Input:
1 2
Sample Output:
3
Source:
#include <stdio.h>
int main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
}
\
\