1. 程式人生 > >BZOJ1000 A+B Problem

BZOJ1000 A+B Problem

pre int 個數 pri tdi using b- can print

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;
}
?

BZOJ1000 A+B Problem