#include<iostream> using namespace std; int main() { int a; double b; cin >> a >> b; double res = a / b; printf("%.3f km/l",res); return 0; }