1 2 3 4 5 6 7 8 9 10 11
#include <stdio.h> int main() { int n; scanf("%d", &n); int a[n]; a[2] = n; printf("%d\n", a[2]); return 0; }