#include<iostream> using namespace std; int main(){ int x; double oil; cin>>x>>oil; printf("%.3lf km/l",x/oil); return 0; }