Ответсообщение недоступно
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}руб ')