1. 程式人生 > >[acm.sgu.ru]100. A+B

[acm.sgu.ru]100. A+B

http://acm.sgu.ru/problem.php?contest=0&problem=100

100. A+B

time limit per test: 0.25 sec.
memory limit per test: 65536 KB

Read integers A and B from input file and write their sum in output file.

Input

Input file contains A and B (0<A,B<10001).

Output

Write answer in output file.

Sample Input

5 3

Sample Output

8

思考:

這個題基本上是讓大家熟悉這個OJ的使用方法,不做過多解釋

CODE:

#include 

using namespace std;

int main(){
    int a;
    int b;
    cin>>a>>b;
    cout<