Write a program in Python.
Enter the age and check if a child can have free fun ride in 'Rashmela'. (Hint: Les than 3years is free)
Answers
Answered by
0
age = int(input("Enter the age of your child = "))
if age < 3:
print("Free Fun Ride in 'Rashmela'.")
else:
print("You have to pay for the Ride.")
Similar questions