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; } |