Quiz 1 Version B 1) 1 0 1 0 1 ``````````````````````````````` 2) 91 69 36 3 ```````````````````````````````` 3) 21 8 2 ```````````````````````````````` 4) Corrected Program: n = int(raw_input("Enter a positive integer: ")) while n > 0: print n n = n - 1 print n Errors: 1 - Need to cast input as an int() 2 - Need to subtract 1 from n before reassigning n's value 3 - Need to print n one more time outside of the loop to get the final value to print