Problem-1000:A + B Problem
Sample Code:
1000 C 代码: [code] #include int main() { int a,b; while(~scanf("%d%d",&a,&b)) { printf("%dn",a+b); } } [code]