读取这一行字符串,每个字符串长度小于80个字符
对于每组数据,输出每行字符串的加密字符串。
Hello! How are you!
Ifmmp! Ipx bsf zpv!
zzz
aaa
from string import ascii_lowercase, ascii_uppercase
table = ascii_lowercase + 'a' + ascii_uppercase + 'A'
try:
while 1:
for i in xrange(input()):
result = ''
s = raw_input()
for j in s:
if j in table:
result += table[table.index(j) + 1]
else:
result += j
print result
except:
pass