rmuhammad15 rmuhammad15 29-09-2022 Computers and Technology Answered target = int(input()) n = int(input()) step = 2 while n > target: print(n * 2) n -= step