BZOJ 1000 [A+B Problem]

题面

题意

  给定 \(a,b\),求 \(a+b\)

题解

  每个 OJ 的传统艺能?

代码

#include<iostream>
#include<cstdio>
using namespace std;
int main(){
    int a,b;
    scanf("%d%d",&a,&b);
    printf("%d\n",a+b);
    return 0;
}
posted @ 2019-11-28 23:13  Kilo-5723  阅读(114)  评论(0)    收藏  举报