标签:a+b main ++ cpp std bzoj problem input bit
输入两个数字,输出它们之和
一行两个数字A,B(0<=A,B<100)
输出这两个数字之和
1 2
3
这题没什么好说的,直接输出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);
}
标签:a+b main ++ cpp std bzoj problem input bit
原文地址:https://www.cnblogs.com/CK6100LGEV2/p/9386112.html