#include <stdio.h>

int main() {
  int x[3];

  printf("Supply an integer: ");
  scanf("%d",x); 

  printf("x[0] = %d\n", x[0]);
  
  return 0;
}
