Write a program that welcomes the user to the Payroll Calculator and prompts him to enter an employee first name, an employee last name, an hourly rate of pay, and the number of hours worked. The program should display the employee’s net pay assuming a withholding tax rate of 20% and then ask the us

print "welcome"

print "first,last name, rate,hours"
read first,last,rate,hours
wh = rate*hours*0.20
and so on.