Answer:
age = int(input("Enter your age: "))
charge = 0
if age > 55:
charge = 10
if 21 <= age <= 54:
charge = 15
if 13 <= age <= 20:
charge = 10
if 3 <= age <= 12:
charge = 5
if 0 <= age < 3:
charge = 0
print(charge)
Step-by-step explanation:
*It is in Python.
Ask the user for the age
Check the each given range and set the charge accordingly using if statements
Print the charge