main()
{
#ifdef _IEEE_FP
	puts("_IEEE_FP");
#endif
#ifdef __VFP_FP__
	puts("__VFP_FP__");
#endif
#ifdef __SOFTFP__
	puts("__SOFTFP__");
#endif
}
