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

  

posted @ 2020-09-24 17:29  xmcword  阅读(83)  评论(0编辑  收藏  举报