"""Exercise 20.6.3 — Concatenating a price into a message

Chapter 20: Common Pitfalls — Everyday Programming

This program should announce the ticket price.

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

price = 15
message = "Ticket costs $" + price
print(message)
