입력
기본 입력
s = input()
n = int(input())
a, b = map(int, input().split())
arr = list(map(int, input().split()))여러 줄 입력 (빠른 입력)
import sys
input = sys.stdin.readline
n, m = map(int, input().split())2차원 배열 입력
board = [list(map(int, input().split())) for _ in range(n)]출력
기본 출력
print(ans)한 줄에 여러 개 출력
print(a, b, c)줄바꿈 없이 출력
print(x, end=" ")