"""Exercise 5.4.1 — First letter

Chapter 5: Data Structures — Everyday Programming

The program should print the first letter of a city name: T.

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

city = "Tokyo"
first = city[1]
print(first)   # T
