Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- text = input()
- for ch in text:
- ch_in_number = ord(ch)
- ch_in_number_with_three = ch_in_number + 3
- print(chr(ch_in_number_with_three), end="")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement