标签:
Description
Input
Output
Sample Input
1 2
Sample Output
3
#include<stdio.h> int main() { int a,b; scanf("%d %d",&a,&b); printf("%d\n",a+b); return 0; }
POJ1000A+Bproblem
原文地址:http://www.cnblogs.com/waishushu/p/5815581.html