#file: wage.py def main(): print "This program calculates the wage for one week work" h=input("Please, input the total number of hours you worked during this week:") r=input("Please, input your rate of pay:") if h>40: pay=h*r*1.5 print "Your wage for this week is:", pay else: pay=h*r print "Your wage for this week is:", pay print "Have a good day!" main()