SGU 100 A+B

SGU的A+B,同时也是博客园的A+B。

View Code
#include <cstdio>
int main() {
    int a, b;
    while (scanf("%d%d", &a, &b) != EOF) {
        printf("%d\n", a + b);
    }
    return 0;
}
#include <cstdio>
int main() {
    int a, b;
    while (scanf("%d%d", &a, &b) != EOF) {
        printf("%d\n", a + b);
    }
    return 0;
}
原文地址:https://www.cnblogs.com/shinecheng/p/3059404.html