f | import sys | f | import sys |
n | input_data = sys.stdin.buffer.read() | n | data = sys.stdin.buffer.read() |
| codecs = ['koi8-r', 'cp1251', 'mac-cyrillic', 'cp866', 'iso8859_5', 'cp8 | | encodings = ['koi8-r', 'cp1251', 'mac-cyrillic', 'cp866', 'iso8859_5', ' |
| 55'] | | cp855'] |
| is_text_found = False | | found = False |
| for original_encoding in codecs: | | for orig_enc in encodings: |
| for intermediate_encoding in codecs: | | for trans_src_enc in encodings: |
| for target_encoding in codecs: | | for trans_tgt_enc in encodings: |
| try: | | try: |
n | intermediate_str = input_data.decode(target_encoding) | n | unicode_str = data.decode(trans_tgt_enc) |
| reencoded_data = intermediate_str.encode(intermediate_en | | data_in_trans_src_enc = unicode_str.encode(trans_src_enc |
| coding) | | ) |
| final_text = reencoded_data.decode(original_encoding) | | decoded_text = data_in_trans_src_enc.decode(orig_enc) |
| if 'Зимбабве' in final_text: | | if 'Зимбабве' in decoded_text: |
| print(final_text) | | print(decoded_text) |
| is_text_found = True | | found = True |
| break | | break |
| except (UnicodeDecodeError, UnicodeEncodeError): | | except (UnicodeDecodeError, UnicodeEncodeError): |
| continue | | continue |
n | if is_text_found: | n | if found: |
| break | | break |
n | if is_text_found: | n | if found: |
| break | | break |
t | if not is_text_found: | t | if not found: |
| print('Failed to recover the original text.') | | print('Could not recover the original text.') |