sgu 100 A+B 解题报告及测试数据

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

  

原文地址:https://www.cnblogs.com/gzdaijie/p/4296771.html