Uri solution 1010 Simple Calculate

#include<stdio.h>
int main()
{
    float a,b,d,e,c,f,i;
    scanf("%f %f %f %f %f %f",&a,&b,&c,&d,&e,&f);
    i=(b*c)+(e*f);
    printf("VALOR A PAGAR: R$ %.2f\n",i);
    return 0;

}

Comments

Popular posts from this blog

Uri Solution 2747 Output 1

Codeforces Solution 230B T-primes