1. 程式人生 > >【bzoj1000】A+B Problem

【bzoj1000】A+B Problem

個數 output 什麽 \n pri bit rip inpu include

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