hdoj 1000

来源:互联网 发布:淘宝儿童女外衣 编辑:程序博客网 时间:2024/05/20 17:25
#include<iostream>
using namespace std;
int main(void)
{
    int a, b;
    while(cin>>a>>b)
    {
        cout<<a + b<<endl;
    }
    return 0;
}
原创粉丝点击