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