What is the result of this program fragment, if the original input values are -15 for hours and 10.0 for rate (when you meant to enter 15 and 10)? hours = int(input('Enter hours worked: ')) rate = float(input('Enter pay rate in dollars per hour: ')) while hours < 0 or rate < 0: print ('Error, both values must be positive numbers. Please reenter') pay = hours * rate print('Your gross pay is ', pay)