#include <stdio.h>
 
int main() {
    int number;
    float hours, amount_per_hour, salary = 0;
    
    scanf("%d",&number);
    scanf("%f",&hours);
    scanf("%f",&amount_per_hour);
    
    salary = hours * amount_per_hour;
    printf("NUMBER = %d\n",number);
    printf("SALARY = U$ %.2f",salary);
 
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: