"""
LESSON: 2.4 - While Loops
TECHNIQUE 1: Breaking a Loop
PRACTICE 2
"""

# This loop has no ending condition
while True:
print("You're trapped in this loop forever!")
guess = input("Unless you guess the secret word... ")

# End the loop if the user types "break"


# Turn in your Coding Exercise.