Advertisement
HoBoCTb

Untitled

Aug 1st, 2021
1,050
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define rep(i, a, b) for (auto (i) = a; i < (b); ++(i))
  5. #define all(x) begin(x), end(x)
  6. #define sz(x) (int)(x).size()
  7. typedef long long ll;
  8. typedef pair<int, int> pii;
  9. typedef pair<ll, ll> pll;
  10. typedef vector<int> vi;
  11. typedef vector<ll> vll;
  12.  
  13. int main() {
  14. #ifdef LOCAL
  15.     freopen("input.txt", "r", stdin);
  16. #endif
  17.     cin.tie(0)->sync_with_stdio(0);
  18.     cin.exceptions(cin.failbit);
  19.    
  20. }
  21.  
  22.  
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement