#include <stdio.h>

int main(void) {
	int a = 5, b = 2;
    float c = 0.0;
    c = (float)a/b;
    printf("%.1f", c);
	return 0;
}
