Hdu1095

1 #include <stdio.h>
2 int main()
3 {
4     int a,b;
5     while(scanf("%d %d",&a,&b)!=EOF){
6         printf("%d

",a+b);
7     }
8     return 0;
9 }
原文地址:https://www.cnblogs.com/Codenewbie2/p/3779110.html