void main()
{int x=1;
start:if(x=1)
{printf("Hello");
x++;
goto start;
}
else
printf("World");
}