#include <stdio.h>
#include <float.h>

int main(void) {
	volatile double c = 0.2;
	
	if (abs(c - 0.2) < DBL_EPSILON ){
		puts("equals");
	}
	return 0;
}
