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