OJ-Problems-Source/HDOJ/1000_autoAC.cpp

11 lines
161 B
C++
Raw Normal View History

2016-08-12 10:05:27 +08:00
#include <cstdio>
#include <iostream>
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)
cout<<a+b<<endl;
return 0;
}