money = 5000
if money > 3800:
print("택시 타자!")
money = 5000
if money > 3800:
print("택시 타자!")
money = 2000
if money > 3800:
print("택시 타자!")
else:
print("걸어가자...")
age = 27
if age < 20:
print("청소년입니다.")
elif age < 65:
print("성인입니다.")
else:
print("무료로 이용하세요!")