Code:
#include <iostream>
#include <iomanip>

using namespace std;
  
const float STATE_TAX_RATE = .07;
const float FEDERAL_TAX_RATE = .15;
const float SOCIAL_SECURITY = .17;
const float MEDICAL = .03;

int main ()
{
    // local declartion section
    string Employee_first_name;
    int Number_of_Hours;
    float Hourly_Pay_Rate;
...