<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
create a python program below that prompts the user for their hourly pay rate and the number of hours they worked for the week and computes their pay amount. Any hours worked over 40 are paid at time-and-a-half (1.5 times the normal hourly rate).
<In what way does your code behave incorrectly? Include ALL error messages.>
<What do you expect to happen instead?>
```python
Replace this line with your code.
hours=raw_input("Enter number of hours worked:")
payrate=raw_input("Enter the hourly wage:")
extrahours = hours - 40
overtime = payrate * 1.5 * extrahours
if hours <= 40:
pay = payrate * hours
elif hours > 40:
pay = 40 * payrate + overtime
else:
print "Invalid entry, please start over."
print "You should get paid around % dollars." %(pay)
<do not remove the three backticks above>