Advertisement
limimage

template

Sep 6th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. #define endl "\n"
  4. using namespace std;
  5. using ll = long long;
  6. using ld = long double;
  7. using pii = pair<int, int>;
  8.  
  9. constexpr int N = 1e5+5;
  10.  
  11.  
  12. void Solve()
  13. {
  14.  
  15. }
  16.  
  17. int main()
  18. {
  19. ios::sync_with_stdio(false);
  20. cin.tie(nullptr);
  21. cout.tie(nullptr);
  22. Solve();
  23. return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement