Find the output of the following python program. how_many=10…

Find the output of the following python program. how_many=10if how_many == 1: print(“Single”)elif how_many == 2: print(“Couple”)elif how_many < 5: print("Few")elif how_many < 10: print("Several")elif how_many > 10: print(“Lots”)else: print(“None”)