print("welcome at the carnival, to get on the atraction, " \
"you need to be 130 cm or taller, the maximum height is 195cm")
height = int(input(" please put in  your height: "))
age = int(input("Please put in your age: "))
min_height = 130
max_height = 195
min_age = 12
wynik_wzrostu_i_wieku = min_height <= height <= max_height and min_age <= age
if wynik_wzrostu_i_wieku == True:
    print("you are tall enough and old enough to get on the atraction")
else :
    print("sadly youre too short or too tall and too young to get on  the atraction")

#-----------------------------------------------------------------------------------------------

#wiek = int(input("Please put in your age: "))
#wzrost = int(input(" please put in  your height: "))

#if wiek >= 12 and 130 <= wzrost => 195
  #print("you are tall enough and old enough to get on the atraction")
#else :
 #print("sadly youre too short or too tall and too young to get on  the atraction")