Uri solution 1014 Consumption

#include<stdio.h>
int main()
{
    float x,y,k;
    scanf("%f %f",&x,&y);
    k=x/y;
    printf("%.3f km/l\n",k);
    return 0;
}

Comments

Popular posts from this blog

Uri Solution 2747 Output 1

Codeforces Solution 230B T-primes