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;
}
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;
}

被折叠的 条评论
为什么被折叠?