| 14 | } |
| 15 | } |
| 16 | int main(){ |
| 17 | cin.tie(0)->sync_with_stdio(0); |
| 18 | int arr[1000][1000]; |
| 19 | int n,m; |
| 20 | cin >>n>>m; |
| 21 | for (int i = 0; i < n; i++) { |
| 22 | for (int j = 0; j < m; j++) { |
| 23 | cin>>arr[i][j]; |
| 24 | } |
| 25 | |
| 26 | } |
| 27 | printarr(arr,n,m); |
| 28 | return 0; |
| 29 | } |
| 30 | |
| 31 |
nothing calls this directly
no test coverage detected