백준 문제 풀이 6321 ( IBM 빼기 1 )

백준 IBM 빼기 1

문제

image

풀이

case = int(input())
index = 0
for i in range(case):
    index += 1
    result = ''
    _name = input()
    for j in _name:
        result += chr(int(ord(j)) + 1).replace('[','A')
    print("String #" + str(index) + '\n' + result + '\n')