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

int main(void) {
	float val = 19.3;
	int div = 2;
	printf("%f", fmod(val, div));
	return 0;
}
