Skip to content

Baekjoon 5598

1. Problem

문제 확인하기

2. Solution

lst = list(input())
for i in range(len(lst)):
    k = ord(lst[i]) - 3
    if k < ord('A'):
        k += 26
    lst[i] = chr(k)
print(''.join(lst))