drink=input("what do you like to drink? (coffee/tea?) : ")
if drink=="coffee":
the_coffee=input("ice coffee or hot coffee ? : ")
if the_coffee=="ice coffee":
sugar=input("do you want sugar? (yes/no) : ")
if sugar in ["yes",'no'] :
print("okey ser. just wait a 5min ")
elif the_coffee=="hot coffee":
sugar=input("do you want sugar? (yes/no) : ")
if sugar in ["yes",'no'] :
print("okey ser. just wait a 5min ")
elif drink=="tea":
the_tea=input("green tea or red tea : ")
if the_tea=="green tea":
sugar=input("do you want sugar? (yes/no) : ")
if sugar in ["yes",'no'] :
print("okey ser. just wait a 5min ")
elif the_tea=="red tea":
sugar=input("do you want sugar? (yes/no) : ")
if sugar in ["yes",'no'] :
print("okey ser. just wait a 5min ")
else:
print("sorry, we don't undrstand you")