"""Exercise 5.4.2 — Shouting

Chapter 5: Data Structures — Everyday Programming

The program should print a greeting in all capitals: HELLO.

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

word = "hello"
loud = word.upper
print(loud)   # HELLO
