Advertisement
Guest User

Untitled

a guest
May 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. n,m=map(int,input().split())
  2. A = []
  3. for i in range(n):
  4.     A.append(list(map(int, input().split())))
  5.  
  6. def Transpose(a):
  7.     # Код, модифицирующий a
  8.  
  9. Transpose(A)
  10. for row in A:
  11.     for elem in row:
  12.         print(elem, end = ' ')
  13.     print()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement