Advertisement
Ilya_konstantinov

Untitled

Dec 3rd, 2023 (edited)
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | Source Code | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include "func.h"
  4.  
  5. using std::cin;
  6.  
  7. using std::vector;
  8. using std::cout;
  9. using std::endl;
  10.  
  11. int main() {
  12.     int n; cin >> n;
  13.     vector<Vector> v(read(n));
  14.     print(v);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement