Мне нужно запустить код в cmd, но после получения результата консоль закрывается. Что делать?
txt = input('')
txt = txt.lower()
txt = txt.replace('q', 'й')
txt = txt.replace('w', 'ц')
txt = txt.replace('e', 'У')
txt = txt.replace('r', 'к')
txt = txt.replace('t', 'е')
txt = txt.replace('y', 'н')
txt = txt.replace('u', 'г')
txt = txt.replace('i', 'ш')
txt = txt.replace('o', 'щ')
txt = txt.replace('p', 'з')
txt = txt.replace('[', 'х')
txt = txt.replace(']', 'ъ')
txt = txt.replace('a', 'ф')
txt = txt.replace('s', 'ы')
txt = txt.replace('d', 'в')
txt = txt.replace('f', 'а')
txt = txt.replace('g', 'п')
txt = txt.replace('h', 'р')
txt = txt.replace('j', 'о')
txt = txt.replace('k', 'л')
txt = txt.replace('l', 'д')
txt = txt.replace(';', 'ж')
txt = txt.replace("'", 'э')
txt = txt.replace('z', 'я')
txt = txt.replace('x', 'ч')
txt = txt.replace('c', 'с')
txt = txt.replace('v', 'м')
txt = txt.replace('b', 'и')
txt = txt.replace('n', 'т')
txt = txt.replace('m', 'ь')
txt = txt.replace(',', 'б')
txt = txt.replace('.', 'ю')
print(txt)