#include <cstdio> using namespace std; int main() { int km; double exp; scanf("%d%lf", &km, &exp); printf("%.3lf km/l", km / exp); return 0; }