- ์๊ณ ๋ฆฌ์ฆ ๋ฌธ์ ๋ฅผ ํธ๋ ์ ์ฅ์์ ๋๋ค.
- ์ ์ํ 2๊ฐ ์ ๋ ฅ ๋ฐ๊ธฐ
a,b = map(int, input().split())
- ์ ์ํ n๊ฐ ์ ๋ ฅ ๋ฐ๊ธฐ
arr = list(map(int,input().split()))
- ์ ์ํ 2๊ฐ ์ ๋ ฅ ๋ฐ๊ธฐ (์ข ๋ ๋น ๋ฅด๊ฒ ์ ๋ ฅ๋ฐ๊ธฐ)
import sys
n, m = map(int, sys.stdin.readline().split())
- 2์ฐจ์ ๋ฆฌ์คํธ ์ ๋ ฅ ๋ฐ๊ธฐ
board = [list(map(int, sys.stdin.readline().split())) for _in range(n)]
- ๋ฌธ์์ด ์ ๋ ฅ ๋ฐ๊ธฐ
text = sys.stdin.readline().rstrip()
- 1์ฐจ์ ๋ฐฐ์ด ์ด๊ธฐํ
rows = 10
arr = [0] * rows
- 2์ฐจ์ ๋ฐฐ์ด ์ด๊ธฐํ
rows = 10
cols = 5
arr = [[0 for j in range(cols)] for i in range(rows)]