Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. a = input()
  2. m = []
  3. while a != 'end':
  4.     m.append([int(i) for i in a.split()])
  5.     a = input()
  6. print(m)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement