int i;
printf ("%s\n", "in front");
{
  goto a;
  printf ("%s\n", "this should be never to see");
  a:
  
  
}
printf ("%s\n", "after");
exit;
