标签:
HDOJ1000 A+B Problem
Accepted.
代码如下:
#include<stdio.h> int main() { int a,b; while(scanf("%d %d",&a,&b)==2) printf("%d\n",a+b); return 0; }
原文地址:http://www.cnblogs.com/wudongyang/p/4333749.html