"""Exercise 8.1.3 — Printing a shopping list

Chapter 8: Input and Output — Everyday Programming

This program should print three fruits on one line, separated by commas,
like apple, banana, cherry.

This program contains exactly one bug. Solution: sol_8_1_3.py
"""

fruits = ["apple", "banana", "cherry"]
print(fruits[0], fruits[1], fruits[2], sep=" ")
