DevLeti

If you enter 'exit', the program will exit

Showing 1 changed file with 4 additions and 1 deletions
while(True):
i = input("")
i = input("If you enter 'exit', the program will exit:")
if(i == "exit"):
break
else:
print(i)
......