xah

Sample Problem 1: Hello World

xah
Mar 24th, 2017 (edited)
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. n = int(input())
  2.  
  3. legend = []
  4.  
  5. for nn in range(n):
  6.     note = input()
  7.     legend.append(note)
  8.  
  9. for l in legend:
  10.     print('Hello ' + '!')
Add Comment
Please, Sign In to add comment