Advertisement
575

Ввод матрицы

575
Oct 18th, 2016
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. n, m = map(int, input().split())
  2. matrix = []
  3.  
  4. for i in range(n):
  5.     matrix.append(list(map(int, input().split())))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement