BZOJ1000 A+B Problem

BZOJ1000A+B Problem

bzoj的开山之作

Solution

输入两个数,然后输出他们的和

Code

#include<iostream>
#include<cstdio>
 
using namespace std;
int a,b;
int main(){
    scanf("%d%d",&a,&b);
    printf("%d\n",a+b);
    return 0;
}


猜你喜欢

转载自www.cnblogs.com/ezoihy/p/9172604.html