DevLeti

If you enter 'exit', the program will exit

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