# echo.py
# Written by Todd Wareham for CS 2500
"""
Prints all keyboard input in uppercase to the screen
 until an input-line "stop" is encountered.
"""

while True:
    line = raw_input(">>> ")
    if line == "stop":
        break
    else:
        print line.upper()
