PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
input = input().lower()
output = ""
min = 97 # min ascii value
max = 122 # max ascii value
for char in input:
if char == " ":
output += char
else:
output += chr(max - (ord(char)-min))
print(output)
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run