Pages

Monday, July 25, 2011

a002: 簡易加法


#include
using namespace std;

int main()
{
int i, j;
while( cin >> i >> j )
cout << i+j << endl;
return 0;
}

No comments:

Post a Comment