#include <iostream>

int main()
{
    std::cout << " Hi today we will be dynamically allocating an array.\n"
                 " How large would you like the array to be?\n";
    int userArraySize; //What the user wants the array size to be
    std::cin >> userArraySize;
    int* numbers = new int[userArraySize];
}
