dimuster

presets

Oct 2nd, 2021 (edited)
774
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. typedef long long ll;
  6. typedef long double ld;
  7. typedef vector<bool> vb;
  8. typedef vector<int> vi;
  9. typedef vector<ll> vl;
  10. typedef vector<ld> vd;
  11. typedef pair<int, int> pi;
  12.  
  13. #define F first
  14. #define S second
  15. #define PB push_back
  16. #define MP make_pair
  17. #define max(a, b) (a > b ? a : b)
  18. #define min(a, b) (a < b ? a : b)
  19.  
  20.  
  21. int main() {
  22.     ios_base::sync_with_stdio(false);
  23.     cin.tie(NULL);
  24.     cout.setf(ios::fixed);
  25.     cout.precision(6);
  26. //    freopen("input.txt", "r", stdin);
  27. //    freopen("output.txt", "w", stdout);
  28.    
  29.    
  30.    
  31.    
  32.     return 0;
  33. }
Add Comment
Please, Sign In to add comment