11 lines
197 B
Python
11 lines
197 B
Python
|
# Lesson 2 Task %*f#ncA0#>?: ROT13 encryption
|
||
|
# Author: Stanislav Mykhailenko
|
||
|
# License: Unlicense
|
||
|
|
||
|
# Return codes:
|
||
|
# 0 - OK
|
||
|
|
||
|
import codecs
|
||
|
|
||
|
print(codecs.encode(input("Enter message: "), "rot13"))
|