#include <stdio.h>

void test(void)
{
	printf("We are here\n");
}

void main()
{
	char buf[18];

	__asm __emit 0xCC;

	test();
	gets(buf);
}