def places():
print("Where do u want to it")
print("1 for aaa, 2 for bbb , 3 for ccc ")
a=int(input("Enter choice"))
if a == 1:
print("What do u want to it")
print("1 for chinese, 2 for indian , 3 for british ")
a=int(input("Enter choice"))
if a == 1:
print(" Chinese , u got following option [noddles, momo, toast ]")
elif a== 2:
print(" Indian , u got following option [paneer , chciken butter masala , naan ]")
elif a == 3:
print("British, u got following option [ water, tea , biscuits]")
else:
print("Invalid")
elif a== 2:
print("What do u want to it")
print("1 for chinese, 2 for indian ")
a=int(input("Enter choice"))
if a == 1:
print(" Chinese , u got following option [noddles, momo, toast ]")
elif a== 2:
print(" Indian , u got following option [paneer , chciken butter masala , naan ]")
else:
print("Invalid")
elif a == 3:
print("British, u got following option [ water, tea , biscuits]")
else:
print("Invalid")
places()
Log in or sign up for Devpost to join the conversation.