Advertisement
CyberN00b

Untitled

Sep 7th, 2022
637
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. int n, m;
  2.     cin >> n >> m;
  3.     vector<vector<int> > vc(n, vector<int>(m));
  4.     for (auto& y : vc)
  5.         for (auto& x : y)
  6.             cin >> x;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement