imes = int(input("Enter the no of values you want to read: ")) values = [] for _ in range(times): value = int(input()) values.append(value)
print(values)