00时 00分 00秒

Problem A+B

Problem A+B

 
Time Limit : 1000 MS   Memory Limit : 65536 KB
 

Description

Calculate a+b
 

Input

Two integer a,b
 

Output

Output a+b
 

Sample Input

1000 985
 

Sample Output

1985


参考代码:
#include <iostream>
using namespace std;
int main()
{
    int a,b;
    cin>>a>>b;
    cout<<a+b<<endl;
}

 

posted @ 2015-03-15 21:31  杰克思勒(Jacksile)  阅读(138)  评论(0编辑  收藏  举报