# file:simpleDecision.py # # def main(): print("Hello! This is a virtual online wine store.") age = int(input("In order to proceed, please enter you age: ")) if age >= 18: print("Here is a selection of wine we have in stock:") print("1. Merlot") print("2. Sauvignon") print("3. Ice Wine") print("4. Pinot Noir") print("5. Chardonnay") print("6. Cabernet") wine=int(input("Which wine would you like to buy? (enter the number choice): ")) n_bottles = int(input("How many bottles of this wine would you like? ")) print("\n You ordered",n_bottles, "bottles of wine #",wine) print("Now the order will be forwarded to the checkout ... ") print("\n Good buy. Have a good day.") main()