# list of numbers list1 = [10, 20, 9, 69, 9] # sorting the list list1.sort() # printing the first element print("Smallest element is:", list1[0])