码迷,mamicode.com
首页 > 其他好文 > 详细

1000. A+B Problem

时间:2017-11-03 11:15:29      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:绝对值   input   rip   ble   code   iostream   orm   include   空格   

Description

作为所有 Online Judge 的传统题目,你只需读两个整数,输出即可,保证输入的数绝对值不超过1000。

Input Format

一行,两个空格隔开的整数A,B。

Output Format

一个数A+B。

Sample Input

3 2

Sample Output

5



#include<iostream>
using namespace std;

int main(){
    int a,b;
    cin>>a>>b;
    cout<<a+b;
    return 0;
}

1000. A+B Problem

标签:绝对值   input   rip   ble   code   iostream   orm   include   空格   

原文地址:http://www.cnblogs.com/bernieloveslife/p/7776849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!