2010年7月30日 星期五

高中 a002: 簡易加法




想看題目請點我

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