"""Exercise 20.13.1 — Capitalizing a name

Chapter 20: Common Pitfalls — Everyday Programming

This program should change the first letter of a name to a capital "S".

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

name = "sam"
name[0] = "S"
print(name)
