if/elif/else
input()
print("You are in a dark cave.") choice = input("Do you go left or right? ") if choice == "left": print("You find treasure!") elif choice == "right": print("A monster attacks!") else: print("You stand still and hear noises...")
elif