User enter integers and you need to calculate the size of array and allocate run time memory for array using command line code example
Example: c++ delete dynamically allocated array
int length = 69;
int * numbers = new int[length];
delete[] numbers;