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

【bzoj1000】A+B Problem

时间:2018-07-29 19:00:13      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:a+b   main   ++   cpp   std   bzoj   problem   input   bit   

Description

输入两个数字,输出它们之和

Input

一行两个数字A,B(0<=A,B<100)

Output

输出这两个数字之和

Sample Input

1 2

Sample Output

3

sol

这题没什么好说的,直接输出a+b即可,也没什么需要注意的。

本菜鸡的第一篇博客QAQ

代码

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int a,b;
    scanf("%d%d",&a,&b);
    printf("%d\n",a+b);
}

【bzoj1000】A+B Problem

标签:a+b   main   ++   cpp   std   bzoj   problem   input   bit   

原文地址:https://www.cnblogs.com/CK6100LGEV2/p/9386112.html

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