Uri solution 1008 Salary

#include<stdio.h>
int main()
{
    int a,b;
    float c,d;
    scanf("%d %d %f",&a,&b,&c);
    printf("NUMBER = %d",a);
    d=b*c;
    printf("\nSALARY = U$ %.2f\n",d);
    return 0;

}

Comments

Popular posts from this blog

Uri Solution 2747 Output 1

Codeforces Solution 230B T-primes