Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 329741 Accepted: 182697
Description
Calculate a+b
Input
Two integer a,b (0Output
Output a+b
Sample Input
1 2
Sample Output
3
#include int main() { int a,b; scanf("%d %d",&a, &b); printf("%dn",a+b); return 0; }
授权协议:创作共用 署名-非商业性使用 2.5 中国大陆
除注明外,本站文章均为原创;转载时请保留上述链接。