游客 Signup | Login
中文 | En

3906 - 壹

输入两个数 a和b,输出a+b的和。

Input

1 1

Output

2

Examples

Input

1 1

Output

2

Hint

不要忘了输出\n

Solution C++

#include <iostream>

using namespace std;

int main()

{
    int a,b;
    while(cin >> a >> b)
    {
        cout << a + b << endl;
    }
}

Hint

不要忘了输出\n

Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题