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