CE求调

P1001 A+B Problem

b9113fced86a32cad0d8 @ 2024-09-04 21:32:53

语言是C++14

事故现场


by SMall_X_ @ 2024-09-04 21:38:26


by liboya5074 @ 2024-09-04 21:41:50

你非得用汇编写?


by Disjoint_cat @ 2024-09-04 21:47:17

不是,哥们


by MasonChong @ 2024-09-05 20:43:38

非得汇编?


by pzzzz @ 2024-09-06 20:37:52

你也是闲的


by wuyuemumuxin @ 2024-09-07 11:09:46

洛谷禁了汇编


by DiandianSPA @ 2024-09-17 16:45:32

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

|