Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <cstdio>
  4. #include <set>
  5. #include <vector>
  6. #include <deque>
  7. #include <map>
  8. #include <stack>
  9. #include <string>
  10. #include <cmath>
  11. #include <algorithm>
  12. #include <sstream>
  13. #include <random>
  14.  
  15. using namespace std;
  16.  
  17. #define en '\n'
  18. typedef unsigned long long ull;
  19. typedef long long ll;
  20. typedef long double ld;
  21. typedef double db;
  22. typedef pair<int, int> pii;
  23. typedef pair<ll, ll> pll;
  24. const double EPS = 1e-9;
  25. const int INF = 1e9 + 7;
  26. const ll LINF = 1e18;
  27. const double PI = 3.1415926535897932384626433832795;
  28.  
  29. void fast_in_out() {
  30. ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
  31. }
  32.  
  33. int main() {
  34. fast_in_out();
  35. return 0;
  36. }
  37.  
  38. /*
  39. ▄▀▀▀▄
  40. ▄███▀░◐░░░▌
  41. ▌░░░░░▐
  42. ▐░░░░░▐
  43. ▌░░░░░▐▄▄
  44. ▌░░░░▄▀▒▒▀▀▀▀▄
  45. ▐░░░░▐▒▒▒▒▒▒▒▒▀▀▄
  46. ▐░░░░▐▄▒▒▒▒▒▒▒▒▒▒▀▄
  47. ▀▄░░░░▀▄▒▒▒▒▒▒▒▒▒▒▀▄
  48. ▀▄▄▄▄▄█▄▄▄▄▄▄▄▄▄▄▄▀▄
  49. ▌▌░▌▌
  50. ▌▌░▌▌
  51. ▄▄▌▌▄▌▌ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement