input-demo

Anonymous
python
10/29/2021 4:32 PM
256 B
15
Indexable
n = int(input())
big_list = []

for i in range(n+1):
    small_list = []
    temp = input().split()
    
    for t in temp:
        small_list.append(int(t))

    big_list.append(small_list)
Editor is loading...