products = ["Banana", "Apple", "Mango", "Cherry"]
prices = [1.20, 0.50, 2.50, 1.75]
quantities_sold = [50, 100, 25, 40]
combined_list = list(zip(products, prices, quantities_sold))
sorted_products = sorted(combined_list)
for product_name, product_price, quantity_sold in sorted_products: print(f"Product: {product_name}, Price: {product_price}, Quantity Sold: {quantity_sold}")