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; }
posted on 2013-05-04 13:36 ShineCheng 阅读(107) 评论(0) 编辑 收藏 举报