首页 > 代码库 > bzoj1000 A+B Problem

bzoj1000 A+B Problem

  不说了,一道伟大的题。

#include<iostream>
using namespace std;
int main(){
    int a,b;
    cin>>a>>b;
    cout<<a+b;
    return 0;
}

 

bzoj1000 A+B Problem