fork download
  1. hours = int(input("Enter hours "))
  2. if hours > 40.0:
  3. print ("Overtime")
  4. else:
  5. print ("Regular")
Success #stdin #stdout 0.01s 28384KB
stdin
32
stdout
Enter hours Regular