```cpp
int main(){ int X; double Y; scanf(“%d%lf”,&X,&Y); printf(“%.3lf km/l”,X/Y);//注意写要求的单位!!! return 0; }