문제 : https://www.acmicpc.net/problem/11655
- 대문자, 소문자일 경우 아스키코드로 계산
- 나머지는 그대로 출력
import sys
data = sys.stdin.readline().rstrip()
for alpa in data:
if(alpa.isupper() is True):
temp = ord(alpa) + 13
if(temp > 90):
temp -= 26
print(chr(temp),end='')
elif(alpa.islower() is True):
temp = ord(alpa) + 13
if(temp > 122):
temp -= 26
print(chr(temp),end='')
else:
print(alpa,end='')