Advertisement
Josif_tepe

Untitled

Oct 17th, 2021
121
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. using namespace  std;
  3.  
  4. int main() {
  5.     int n, m;
  6.     cin >> n >> m;
  7.    
  8.     int mat[n][m];
  9.     for(int i = 0; i < n; i++) {
  10.         for(int j = 0; j < m; j++) {
  11.             cin >> mat[i][j];
  12.         }
  13.     }
  14.    
  15.     for(int i = 0; i < n; i++) {
  16.         for(int j = 0; j < m; j++) {
  17.             cout << mat[i][j] << " ";
  18.         }
  19.         cout << endl;
  20.     }
  21.     return 0;
  22. }
  23.  
  24.  
  25.  
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement