#include <iostream> #include <cstdio> using namespace std; int main() { int X; float Y; scanf("%d%f", &X,&Y); printf("%.3f km/l",X/Y); return 0; }