Because you use the same cost variable twice, it will just end up storing the 2nd thing that the user inputs (labor cost), and your program won't know/use the cost per gallon of paint.
Instead, use two different variables: laborCostPerHour and paintCostPerGallon.
Hope that helps!