#include <stdio.h>
int main(void)
{
goto a;
.
.
.
중략
.
.
.
a:
printf (\"hello, world!\");
return 0;
}