input-demo
unknown
python
4 years ago
190 B
5
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...