#1000 POJ

来源:互联网 发布:尚学堂 大数据视频 编辑:程序博客网 时间:2024/06/05 20:42

A+B Problem

Description

Calculate a+b

Input

Two integer a,b (0<=a,b<=10)

Output

Output a+b

Sample Input

1 2

Sample Output

3

Source Code:

#include <iostream>using namespace std;int main(){    int a,b;    cin >> a >> b;    cout << a+b << endl;    return 0;}

0 0