Final answer:
To find the smallest integer inputted by the user, use a loop to continuously accept user inputs until -1 is entered. Compare each input with the current 'smallest' number and update the value if a smaller number is entered.
Step-by-step explanation:
To find the smallest integer inputted by the user, you can use a loop to continuously accept user inputs until the number -1 is entered. Initialize a variable called 'smallest' with the first inputted number. While accepting inputs, compare each input with the current 'smallest' number and update the value of 'smallest' if a smaller number is entered.
Here is an example program:
smallest = int(input('Enter an integer: '))
while True:
num = int(input('Enter another integer or -1 to exit: '))
if num == -1:
break
if num < smallest:
smallest = num
print('The smallest number is:', smallest)