R
Size: a a a
В
с
M
IL
В
R
MR
первый:
while True:
print('Type exit to exit')
response = input()
if response == 'exit':
break
print('you typed: ' + response + '.')
второй:
import sys
while True:
print('Type exit to exit')
response = input()
if response == 'exit':
sys.exit()DG
первый:
while True:
print('Type exit to exit')
response = input()
if response == 'exit':
break
print('you typed: ' + response + '.')
второй:
import sys
while True:
print('Type exit to exit')
response = input()
if response == 'exit':
sys.exit()MR
DG
Q
MR
DG