"""Exercise 20.20.3 — Checking a chemical symbol

Chapter 20: Common Pitfalls — Everyday Programming

This program should recognize the element symbol "Na" however the user
types it.

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

symbol = "NA"
if symbol == "Na":
    print("That is sodium")
