I want to capture several numbers in this form:
2 4 5 3 5 0 4
As undefined number of numbers and without using an auxiliary list, I want to use only one variable
for _ in range(0,n):
num = int(input())
I only know how to create list
for _ in range(0,q):
lista +=[int(input().split(' '))]