1Your_hight = int(input("What is Your hight:- "))
2if Your_hight >= 120:
3 print("You are good to go to the roller coster")
4 your_age = int(input("What is your Age:- "))
5 if your_age > 8:
6 print("This is your ticket and have your seat on the roller coster")
7 else:
8 print("Sorry you can't go to the roler coster")
1if expression1:
2 statement(s)
3 if expression2:
4 statement(s)
5 elif expression3:
6 statement(s)
7 elif expression4:
8 statement(s)
9 else:
10 statement(s)
11else:
12 statement(s)