T = int(input())
mirror = {
'b': 'd',
'd': 'b',
'p': 'q',
'q': 'p'
}
for t in range(1, T+1):
word = input()
result = ''
for i in range(len(word) - 1, -1, -1):
result += mirror[word[i]]
print('#{} {}'.format(t, result))
'알고리즘 문제 풀이 > SWEA' 카테고리의 다른 글
[SWEA 4408 python] 자기 방으로 돌아가기 (0) | 2021.08.16 |
---|---|
[SWEA 1206 python] View (0) | 2021.08.13 |
[SWEA 1979 python] 어디에 단어가 들어갈 수 있을까 (0) | 2021.08.13 |
[SWEA 1966 python] 숫자를 정렬하자 (0) | 2021.08.13 |
[SWEA 1210 python] Ladder1 (0) | 2021.08.13 |