Ответсообщение недоступно
name = input("название ")
cost = int(input("цена"))
weight = int(input("вес"))
money = int(input("деньги покупателя"))
result = cost * weight
change = money - result
print(f'Чек\n{name} - {weight}кг - {cost}руб/кг\nИтого: {result}руб \nВнесено: {money}руб \nСдача: {change}руб ')