Guest User

Untitled

a guest
Mar 23rd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. # Create array from lines of separated values such as 1 2 3
  2. arr = list(map(int, input().strip().split(' ')))
  3.  
  4.  
  5. import sys
  6. def read_in():
  7. return [x.strip() for x in sys.stdin]
  8.  
  9. lines = read_in()
  10. print(lines)
  11.  
  12.  
  13. lines = input()
  14. for i in range(int(lines)):
  15. line = input()
  16. print(line)
Add Comment
Please, Sign In to add comment