P1001 A+B Problem

洛谷团队希望加入!

P1001 A+B Problem

https://www.luogu.com.cn/problem/P1001

这简单的代码:

#include <iostream>
#include <cstdio>

using namespace std;

int main() {
    int a,b;
    cin >> a >> b;
    cout << a+b;
    return 0;
}

  

原文地址:https://www.cnblogs.com/xmcword/p/13725300.html