#!/usr/local/bin/python3 while True: userIn = input("> ").upper() if userIn == "EXIT": break print(userIn)