标签:
#include <stdio.h> int main() { int a, b; while (scanf ("%d%d", &a, &b)!=EOF) { printf ("%d\n\n", a+b); } return 0; }
HDU 1095 A+B for Input-Output Practice (VII)
原文地址:http://www.cnblogs.com/Noevon/p/5928253.html