online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
# обход вордфильтра двача import string #symbols = (u"аеёзкорсухчьАВЕЁЗКМНОРСТУХЧЬ", # u"aee3kopcyx4bABEE3KMHOPCTYX4b") symbols = (u"аеёорсухАВЕЁЗКМНОРСТХЬ", u"aeeopcyxABEE3KMHOPCTXb") tr = str.maketrans(*symbols) # for Python 2.*: # tr = dict( [ (ord(a), ord(b)) for (a, b) in zip(*symbols) ] ) while True: #text = input('Введите текст: ') lines = [] print ('Введите текст: ') while True: line = input() if line: lines.append(line) else: break text = '\n'.join(lines) print (text.translate(tr))

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue