"""Exercise 5.4.3 — Full name

Chapter 5: Data Structures — Everyday Programming

The program should join a first and last name with a space: "Maya
Singh".

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

first = "Maya"
last = "Singh"

full = first + last
print(full)   # Maya Singh
