#include <stdio.h>
 
int main() {
    char nome[15];
    float salario_fixo, montante, total;
    
    scanf("%s",nome);
    scanf("%f",&salario_fixo);
    scanf("%f",&montante);
    
    total = salario_fixo + (montante * 15 / 100);
    printf("TOTAL = %.2f",total);
 
    return 0;
}

Embed on website

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