"""Exercise 20.2.1 — Body not indented

Chapter 20: Common Pitfalls — Everyday Programming

This program should greet a registered member.

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

member = "Alex"
if member == "Alex":
print("Welcome back")
