1000

来源:互联网 发布:键盘弹钢琴软件下载 编辑:程序博客网 时间:2024/05/01 21:58

A+B Problem

题目网址:NSWOJ-1000- A+B Problem

1000 - A+B Problem

时间限制:1秒 内存限制:10兆

题目描述

Calculate a+b

输入

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

输出

Output a+b

样例输入
1 2
样例输出
3

来源
POJ

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