标签:
Description
Input
Output
Sample Input
Sample Output
#include<stdio.h> int main() { int a,b; while(scanf("%d %d",&a,&b)!=EOF) printf("%d\n",a+b); return 0; }
A题 - A + B Problem
原文地址:http://www.cnblogs.com/hfc-xx/p/4878783.html