hello
khoor
s = input().strip() result = '' for ch in s: if ch.isalpha(): result += chr((ord(ch) - ord('a') + 3) % 26 + ord('a')) else: result += ch print(result)