HDUACM 1000

来源:互联网 发布:java中取绝对值 编辑:程序博客网 时间:2024/05/16 11:45

http://acm.hdu.edu.cn/showproblem.php?pid=1000

#include<iostream>using namespace std;int main(void){    int a;    int b;    while(cin>>a>>b)    {        cout<<a+b<<endl;    }    return 0;}

0 0