#include using namespace std; int main() { int size; int * arr; cin>>size; arr = new int[size]; return 0; }