"""Exercise 8.1.5 — Greeting by name

Chapter 8: Input and Output — Everyday Programming

This program asks for a name and prints a greeting.

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

# Assume the user types: Ava
name = input("What is your name? ")
print(f"Hello, {name}! Welcome aboard.)
