using namespace std; int main() { int a; double b; scanf(“%d\n%lf”,&a,&b); printf(“%.3f km/l”,a/b); return 0; }