NOBLE-_-MAN

1.3

Dec 2nd, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. a, b = input().split()
  2. a = int(a)
  3. b = int(b)
  4. for i in range(a, b+1):
  5.     print(i**2, end=' ')
  6.  
Add Comment
Please, Sign In to add comment