반응형
# @Author YoungMinKim
# baekjoon
import sys
from collections import deque
N = int(sys.stdin.readline())
for _ in range(N):
x = list(sys.stdin.readline().split())
for i in x:
print(i[::-1],end=' ')
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 5597 (0) | 2020.12.06 |
---|---|
baekjoon - python - 1735 (0) | 2020.11.24 |
baekjoon - python - 6603 (0) | 2020.11.02 |
baekjoon - python - 10101 (0) | 2020.10.28 |
baekjoon - python - 7567 (0) | 2020.10.28 |
댓글