n1 = int(input( "Enter a number: ")) n2 = int(input( "Enter a number: ")) n3 = int(input( "Enter a number: ")) n4 = int(input( "Enter a number: ")) n5 = int(input( "Enter a number: ")) high = max(n1,n2,n3,n4,n5) low = min(n1,n2,n3,n4,n5) print( "The biggest number was:" , high ) print( "The smallest number was:" , low )