#include <stdio.h>
int f(int n){
int ans=1;
for(int i=2;i<=n;i++)ans*=i;
return ans;
};
int main(void) {
const int n=f(5);
int a[n];
return 0;
}
I2luY2x1ZGUgPHN0ZGlvLmg+CgppbnQgZihpbnQgbil7CglpbnQgYW5zPTE7Cglmb3IoaW50IGk9MjtpPD1uO2krKylhbnMqPWk7CglyZXR1cm4gYW5zOwp9OwoKaW50IG1haW4odm9pZCkgewoJY29uc3QgaW50IG49Zig1KTsKCWludCBhW25dOwoJcHJpbnRmKCIlZCIsc2l6ZW9mKGEpLzQpOwoJcmV0dXJuIDA7Cn0K