poj1000

a+b problem

View Code
#include <iostream>
using namespace std;
int main()
{    
    int a,b;    
    cin >> a >> b;    
    cout << a+b << endl;    
    return 0;
}
posted @ 2012-11-25 14:42  金海峰  阅读(345)  评论(0编辑  收藏  举报