xmu 1000 A+B

来源:互联网 发布:陈程编程 编辑:程序博客网 时间:2024/05/22 07:49
Description

Calculate a+b

Input

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

Output

Output a+b

Sample Input

1 2

Sample Output

3

 

 

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


 

 

0 0
原创粉丝点击