#include <stdio.h>

void foo(int s)
{
	int a[s];
	printf("%d", sizeof a);
}

int main(void) {
	foo(10);
	return 0;
}
