print("Choose a range for the number:")
print(1.1,50)
print(2.1,100)
print(3.1,1000)
for i in range(1,50):
print(i)
for i in range(1,100):
print(i)
for i in range(1,1000):
print(i)
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)