1000 A + B Problem

发布时间: 更新时间: 总字数:59 阅读时间:1m 作者: IP上海 分享 网址
专栏文章

    1000 A + B Problem

    Problem Description

    Calculate A + B.

    Input

    Each line will contain two integers A and B. Process to end of file.

    Output

    For each case, output A + B in one line.

    Sample Input

    1 1

    Sample Output

    2

    Code

    #include
    using namespace std;
    
    int main()
    {
        int a,b;
        while(cin>>a>>b)
            cout<<a+b<<endl;
        return 0;
    }
    
    Home Archives Categories Tags Statistics
    本文总阅读量 次 本站总访问量 次 本站总访客数