#include <stdio.h>

int main(void) {
	int a = 5;
	int b = 3;
	printf("%f\n", b / a);
	return 0;
}
