#include <stdio.h>

typedef int BOOL;
#define		FALSE	( 0 )
#define		TRUE	( 1 )

BOOL test;

int main( void ) 
{
	// your code goes here
	printf( "%d\n", test );
	return 0;
}
