Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <vector>
- #include "func.h"
- using std::cin;
- using std::vector;
- using std::cout;
- using std::endl;
- int main() {
- int n; cin >> n;
- vector<Vector> v(read(n));
- print(v);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement