Quiz 3 Version B Solution Problem 1: True False False True True Problem 2: 3 12 21 --- 5 30 --- 7 --- 9 --- Problem 3: product = 1 n = int(raw_input("Enter a positive integer: ")) while (n < 15) and (n >= 0): product = product * n n = int(raw_input("Enter a positive integer: ")) print "The product is:", product