I would like to get rid of None
but I don't know what is my mistake here...
def job(hours,rate):
if hours < 40:
sm = hours * rate
print(sm)
elif hours > 40:
sm = 40 * rate
ov = ((hours - 40) * rate) * 0.5
tt = sm + ov
print(tt)
a = float(input())
b = float(input())
print(job(a,b))
print("Fine")