Integer num_samples is read from input, representing the number of integers to be read next. Read the remaining integers from input and append each integer to samples_list.
Click here for example
Ex: If the input is:
3
70
61
49
then the output is:
[70, 61, 49}