"""Exercise 20.13.5 — Correcting a unit label

Chapter 20: Common Pitfalls — Everyday Programming

This program should change the first letter of "km" to make "Km".

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

unit = "km"
unit[0] = "K"
print(unit)
