1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| #include<bits/stdc++.h> #define endl '\n' #define int long long using namespace std;
void solve() {
}
signed main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); int _ = 1; while (_--) solve(); return 0; }
|