#Program to decide whether you can drive
print("Enter the age")
age = int(input())

print(age)

if age>18:
  print("You are allowed to drive")
  
elif age==18:
  print("You need to make license")
  
elif age<10:
  print("U r still a kid now")
  print("******     *******")
  print("")
  print("     *******")
  
else :
  print("You are under age") 
by