这是逆天的

P1001 A+B Problem

Youth_Glory @ 2024-07-19 08:40:37

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);

ll 逆,天;

signed main()
{
    IOS;
    cin>>逆>>天;
    cout<<逆+天;
    return 0;
}

亲测能过


by EmptyAlien @ 2024-07-19 08:42:51

但c++14会CE


by Youth_Glory @ 2024-07-19 08:47:14

@Lightning_Creeper c++11就可过,我小熊猫和洛谷IDE也能运行


by Lordi @ 2024-07-19 09:02:01

可过,c++11rt


by xujunyi2012 @ 2024-07-19 09:40:15

@weifeng_yuhuo c++98也行


|