print("welcome at the carnival, to get on the roller coster, " \
"you need to be 150cm or taller, the maximum height is 250cm")
height = int(input(" please put in  your height: "))
min_height = 150
max_height = 250 
wynik_wzrostu = min_height <= height <= max_height 
print(wynik_wzrostu)
if min_height <= height <= max_height :
    print("you are tall enough to ride the rollercoster")
else :
    print("sadly youre too short or too tall to ride the rollercoster")