Computer Science, asked by barnitabaul, 19 days ago

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 aadarshprem82
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