input-demo

 avatar
unknown
python
3 years ago
190 B
4
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...