2014年1月15日

poj1000:a+b

摘要: 描述Calculate a + b输入Two integer a,,b (0 ≤ a,b ≤ 10)输出Output a + b样例输入1 2样例输出3/* * a+b.cpp * * Created on: 2014-1-15 * Author: Administrator */#includeusing namespace std;int main(){ int a;int b; cin>>a>>b; cout<<a+b<<endl; return 0;} 阅读全文

posted @ 2014-01-15 11:49 infantalove 阅读(90) 评论(0) 推荐(0)

导航