"""Exercise 20.6.1 — Joining text and a number

Chapter 20: Common Pitfalls — Everyday Programming

This program should print a label with the day's step count.

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

steps = 8000
print("Steps today: " + steps)
