hdu 1000

来源:互联网 发布:mac 照片 iphoto 区别 编辑:程序博客网 时间:2024/04/30 02:55

入门题


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


0 0
原创粉丝点击