from random import randint, seed

seed(42)  # zkuste zakomentovat

print(randint(1, 1000))
print(randint(1, 100))
print(randint(1, 6))
