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

  

相关文章:

  • 2022-02-13
  • 2021-06-03
  • 2022-01-15
  • 2021-06-25
  • 2022-02-13
  • 2022-02-10
  • 2021-07-30
  • 2022-02-13
猜你喜欢
  • 2021-11-10
  • 2022-03-10
  • 2021-11-18
  • 2022-02-03
  • 2021-10-21
  • 2022-01-16
  • 2021-08-10
相关资源
相似解决方案