#поиск наибольшей цены из трёх
price1 = int(input("Цена первого товара:"))
price2 = int(input("Цена второго товара:"))
price3 = int(input("Цена третьего товара:"))
total = 0
if price1 >= price2:
if price1 >= price3:
total = price1
else:
total = price3
else:
if price2 >= price3:
total = price2
else:
total = price3
print("Акция! К оплате за три товара:", total)