"""Exercise 20.13.2 — Fixing a typo in a word

Chapter 20: Common Pitfalls — Everyday Programming

This program should change "hpllo" into "hello" by replacing one letter.

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

word = "hpllo"
word[1] = "e"
print(word)
