"""Exercise 5.1.4 — Counting by tens

Chapter 5: Data Structures — Everyday Programming

The program should add 10 to a starting count and print 110.

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

count = 100
count = count + "10"
print(count)   # 110
