Question 7

PHOTO EMBED

Sun Dec 18 2022 11:30:44 GMT+0000 (Coordinated Universal Time)

Saved by @qeebza

#Question 7

hour = int(input("Enter working hours : "))

if hour <= 40:
    payment = hour * 25
else:
    payment = 40 * 25 + (hour - 40) * 50

print("Payment = RM", payment)
content_copyCOPY