#include <stdio.h>
#include <math.h>

int main(void) {
	printf("%.20f", fmod(4.0,0.1));
	return 0;
}