#include <stdio.h>
#include "where.h"

int main(void) {

	#ifdef NEO
	printf("NEO\n"); 
	#endif

	#ifdef CAIRO
	printf("CAIRO\n"); 
	#endif

	#ifdef HOPPER
	printf("HOPPER\n"); 
	#endif

	#ifdef ACL
	printf("ACL\n"); 
	#endif

	#ifdef BIGFE
	printf("BIGFE\n"); 
	#endif


	return(0);
}
