본문 바로가기
백준문제/브론즈 4

백준) 11945번 - python

by kiseno 2024. 4. 14.
728x90
반응형
SMALL
n,m = map(int,input().split())
lst = []
for i in range(n):
    a = list(map(int,input()))
    a.reverse()
    lst.append(a)

for row in lst:
    for element in row:
        print(element, end="")
    print()
728x90
반응형
LIST

'백준문제 > 브론즈 4' 카테고리의 다른 글

백준) 13752번 - python  (0) 2024.04.16
백준) 11948번 - python  (0) 2024.04.15
백준) 11720번 - python  (0) 2024.04.13
백준) 11365번 - python  (0) 2024.04.12
백준) 10808번 - python  (0) 2024.04.11