100.A+B

time limit per test: 0.25 sec.

memory limit per test: 65536 KB

题解:上手题,不解释。

直接上代码:

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

  

相关文章: