count = int(input())
for j in range(count):
h,w = map(int, input().split())
for i in range(h):
a = input()
b=w-1
while b>=0:
print(a[b],end="")
b=b-1
print()
'백준 알고리즘 > 시뮬레이션' 카테고리의 다른 글
백준 14503번 C++ (0) | 2019.01.26 |
---|---|
백준 1547 파이썬 (0) | 2018.11.13 |
백준 1057 파이썬 (0) | 2018.11.06 |
백준 1094 파이썬 (0) | 2018.11.06 |
백준 2455 파이썬 (0) | 2018.11.06 |