MIN_ADULT_AGE = 18 #Defining the named constant age = float(input("Enter your age in years: ")) if (age >= MIN_ADULT_AGE): #Using the named constant print("You passed the age check") else: print("You did not pass the age check")