INPUT:
print( "Amazon shopping ")
places=["pollachi","coimbatore","bangalore","chennai"]
id=int(input("enter the id:"))
if id==12345:
print("your order is in chennai ")
elif id==21345:
print("your order is in pollachi ")
elif id==32145:
print("your order is in coimbatore ")
elif id==41235:
print("your order is in bangalore ")
else:
print("wrong id")