#include <stdio.h>

main()
{
  char *s;

  s = NULL;

  printf("%d\n", s[0]);
}

