#include <iostream>
using namespace std;

void f(int N)
{
    char arr[N];
    cout << N;
}

int main()
{
    f(10);
}