#include <iostream>
using namespace std;

void f(const int n)
{
    double arr[n];
    //do some
}

int main() {
	
	f(20);
	// your code goes here
	return 0;
}