m = float(input('Масса (кг) = '))
t1 = float(input('t1 (°С) = '))
t2 = float(input('t2 (°С) = '))
c = float(input('Теплоємнітсь речовиини (Дж/(кг·°C)) = '))
q = c * m * (t2 - t1)
print("Кількість теплоти: ", round(q, 5), "Дж")
m = float(input('Масса (кг) = '))
t1 = float(input('t1 (°С) = '))
t2 = float(input('t2 (°С) = '))
c = float(input('Теплоємнітсь речовиини (Дж/(кг·°C)) = '))
q = c * m * (t2 - t1)
print("Кількість теплоти: ", round(q, 5), "Дж")