import base64
t = int(input())
for tc in range(1,t+1):
s = input()
enc = s.encode("UTF-8")
dec = base64.b64decode(enc)
print(f'#{tc} {dec.decode("UTF-8")}')
'문제풀이 > SW Expert Academy' 카테고리의 다른 글
[SWEA][D3] 3431. 준환이의 운동관리 (파이썬/Python) (0) | 2021.10.11 |
---|---|
[SWEA][D2] 1288. 새로운 불면증 치료법 (파이썬/Python) (0) | 2021.10.10 |
[SWEA][D2] 1945. 간단한 소인수분해 (파이썬/Python) (0) | 2021.10.08 |
[SWEA][D2] 1946. 간단한 압축 풀기 (파이썬/Python) (0) | 2021.10.08 |
[SWEA][D2] 1948. 날짜 계산기 (파이썬/Python) (0) | 2021.09.24 |