본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#295 백준 파이썬 [11945] 뜨거운 붕어빵

https://www.acmicpc.net/problem/11945

 

PYTHON CODE

N, M = map(int, input().split())
for _ in range(N):
    print(input()[::-1])