Write a program that takes integers from the user one at a time. Assume the input is some number of positive integers. The user will type in 0 to end the input and the 0 should not be counted as input. Your program should find the smallest value input and then print it to the screen. If the input is 6 9 3 5 0, the output is 3. You can assume at least one positive integer is input. c++ g