#include <stdio.h>

int main() {
	int a = 7; // pembilang
	int b = 4; // penyebut

	float c = a/b;
	printf("%f", c); // Hasil: 1.000000

	return 0;
}