age = int(input("What is your age? "))
has_license = input("Do you have license? y/n ").upper()
aged = age >= 18
licensed = has_license == "Y"
if aged:
print("You are old enough")
else:
print("get your license first bitch")
if licensed:
print("You have a license")
if not licensed:
print("You do not have a license")
if not aged and not licensed:
print("You are not eligible")