방승일

exit

Showing 1 changed file with 2 additions and 0 deletions
while True :
a = input(">>>")
if a == "exit" :
exit()
print(a)
......