5 lines
95 B
Python
5 lines
95 B
Python
n = int(input())
|
|
matx = []
|
|
for i in range(n):
|
|
matx.append(list(map(int, input().split())))
|