POJ 1000

来源:互联网 发布:连环杀人知乎 编辑:程序博客网 时间:2024/05/20 16:37
A+B Problem
Time Limit: 1000MS Memory Limit: 10000KTotal Submissions: 408832 Accepted: 229470

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
原创粉丝点击