Advertisement
Korotkodul

СПБГУ_B

Dec 24th, 2021
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. #include <vector>
  4. #include <queue>
  5. #include <algorithm>
  6. #include <string>
  7. #include <stack>
  8. #include <set>
  9. #include <map>
  10. #define pii pair <int,int>
  11. using namespace std;
  12. using ll = long long;
  13. using ld = long double;
  14. void cv(vector <int> &v){
  15.     for (auto x: v) cout<<x<<' ';
  16.     cout<<"\n\n";
  17. }
  18.  
  19. int main()
  20. {
  21.     /*ios::sync_with_stdio(0);
  22.     cin.tie(0);
  23.     cout.tie(0);*/
  24. }
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement