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