#include<bits/stdc++.h>usingnamespace std;#define _for(i, a, b) for (int i = (a); i <= (b); ++i)#define _rep(i, a, b) for (int i = (a); i >= (b); --i)#define debug(a) cout << #a << " = " << a << endl#define mod(x) (x) % MOD#define ENDL "\n"#define x first#define y secondtypedeflonglong ll;typedef pair<int,int> pii;typedef vector<int> vi;constint N =100000+7, MOD =1e9, INF =0x3f3f3f3f;intmain(){#ifdef LOCALfreopen("data.in","r",stdin);#endif
ios::sync_with_stdio(false);
cout.tie(0), cin.tie(0);int x, y;
cin >> x >> y;return0;}
快读版本
#include<bits/stdc++.h>usingnamespace std;#define _for(i, a, b) for (int i = (a); i <= (b); ++i)#define _rep(i, a, b) for (int i = (a); i >= (b); --i)#define debug(a) cout << #a << " = " << a << endl#define mod(x) (x) % MOD#define ENDL "\n"#define x first#define y secondtypedeflonglong ll;typedef pair<int,int> pii;typedef vector<int> vi;constint N =100000+7, MOD =1e9, INF =0x3f3f3f3f;struct ios {inlinecharread(){staticconstint IN_LEN =1<<18|1;staticchar buf[IN_LEN],* s,* t;return(s == t)&&(t =(s = buf)+fread(buf,1, IN_LEN,stdin)), s == t ?-1:*s++;}template<typename _Tp>inline ios&operator>>(_Tp& x){staticchar c11, boo;for(c11 =read(), boo =0;!isdigit(c11); c11 =read()){if(c11 ==-1)return*this;
boo |= c11 =='-';}for(x =0;isdigit(c11); c11 =read())x = x *10+(c11 ^'0');
boo &&(x =-x);return*this;}} io;intmain(){#ifdef LOCALfreopen("data.in","r",stdin);#endifint x, y;
io >> x >> y;return0;}