ZOJ 1001 A + B Problem

来源:互联网 发布:网络兼职打字日赚100 编辑:程序博客网 时间:2024/04/27 18:08
#include <stdio.h>int main(){    int a,b;    while(scanf("%d %d",&a, &b) != EOF)        printf("%d\n",a+b);    return 0;}