Zanjo_Betchi

W3A2 : List Slicing

Aug 28th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. '''
  2. @Author: Zanjo
  3. @Date Of Creation: 14/08/18
  4. '''
  5.  
  6. a = input().split()
  7. print ("\n".join(str(x) for x in ([i for i in range(1,51)][int(a[0]):int(a[1])])),end="")
Add Comment
Please, Sign In to add comment