链接:http://acm.hdu.edu.cn/showproblem.php?pid=1000
超级水的题:
1 #include<stdio.h>2 #define P 3.14159273 main()4 {5 int a,b;6 while(scanf("%d%d",&a,&b)==2)7 printf("%d\n",a+b);8 return 0;9 }