Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

4.

18 LAB: Smallest and largest numbers in a list


Write a program that reads a list of integers into a
list as long as the integers are greater than zero,
then outputs the smallest and largest integers in
the list.

Ex: If the input is:

10
5
3
21
2
-6
the output is:

2 21
You can assume that the list of integers will have
at least 2 values.
n = int(input())

min = n

max = n

while(n>0):

if(min>n):

min = n

if(max<n):

max = n

n = int(input())

print(min, max)

You might also like