매번 구글링해서 찾아보던 문법들을 정리해 놓으려고 한다.
# 3 5 n, m = map(int, input().split())
# 1 2 3 4 5 data = list(map(int, input().split())
# 1 2 3 4 5 # 2 3 4 5 6 arr = [list(map(int, input().split())) for _ in range(2)]