maxim_shlyahtin

Untitled

Nov 28th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. a, b = list(map(int, input().split()))
  2. for i in range(a, b + 1):
  3.     print(i ** 2, end=' ')
Add Comment
Please, Sign In to add comment