#include<stdio.h>

int main(){
//Variables
char employeeName[] = "Nathan Gavriel Garcia";
int hoursWorked = 80;
float hourlyRate = 900;
//Computation
float grossPay = hoursWorked*hourlyRate;
float tax = 0.10 * grossPay;
float netPay = grossPay-tax;
//Display
puts("====================================");
printf(" EMOPLOYEE PAYROLL\n");
puts("====================================");
printf("Employee Name: %s\n", employeeName);
printf("Hours Worked : %d\n", hoursWorked);
printf("Hourly Rate : Php %.2f\n", hourlyRate);
printf("Gross Pay : Php %.2f\n", grossPay);
printf("Tax (10%%) : Php %.2f\n", tax);
printf("Net Pay : Php %.2f\n", netPay);
puts("====================================");
return 0;

}