Lallo/PR4E

Check this out

Opened this issue · 0 comments

def computepay(h,r):
if h>40:
return (h-40)r1.5+(40r)
else:
return h
r
h= float(input("Enter Hours: "))
r=float(input("Enter rate: "))
p = computepay(h,r)
print("Pay",p)