bzoj的开山之作
输入两个数,然后输出他们的和
#include<iostream> #include<cstdio> using namespace std; int a,b; int main(){ scanf("%d%d",&a,&b); printf("%d\n",a+b); return 0; } ?
BZOJ1000 A+B Problem
原文:https://www.cnblogs.com/ezoihy/p/9172604.html