bzoj1000A+B Problem

Posted ck6100lgev2

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj1000A+B Problem相关的知识,希望对你有一定的参考价值。

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
",a+b);
}

以上是关于bzoj1000A+B Problem的主要内容,如果未能解决你的问题,请参考以下文章

[BZOJ1000] A+B Problem

bzoj 1000: A+B Problem

bzoj1000A+B Problem

Problem-1000:A + B Problem

bzoj3767A+B Problem加强版

BZOJ 2301 problem b