How many times does the while loop execute for the given input values of -1, 4, 0, 9? user_num = 3 # Initial value set to 3 while user_num > 0: # Continues while user_num is greater than 0 user_num = int(input())