Rejudge Progress:
1014: A+B for Input-Output Practice1(入门)
Time Limit: 1000 MS Memory Limit: 65536 KBTotal Submit: 2562 Accepted: 1395 Page View: 5353
Submit Status Discuss
Description
Your task is to Calculate a + b.
Input
Input contains multiple test cases. Each test case contains a pair of integers a and b, one pair of integers per line. A test case containing 0 0 terminates the input and this test case is not to be processed.
Output
For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.
1 5
10 20
0 0
6
30
Hint
提供一个参考程序:
C语言:
#include"cstdio" ///也可以使用 < >
int main()
{
int a,b;
while(scanf("%d %d", &a,&b) != EOF) ///EOF:end of file 文件结束标志
{
if(a==0 && b==0)
break;
printf("%d\n", a+b);
}
return 0;
}
C++:
#include"iostream" ///也可以使用 < >
using namespace std;
int main()
{
int a,b;
while(cin >> a >> b)
{
if(a==0 && b==0)
break;
cout << a+b << endl;
}
return 0;
}