Gfdtk
Мыслитель
(5267)
10 месяцев назад
def convert_to_mm(meters, centimeters):
mm = (meters * 1000) + (centimeters * 10)
return mm
meters = int(input("Введите количество метров: "))
centimeters = int(input("Введите количество сантиметров: "))
result = convert_to_mm(meters, centimeters)
print("Результат преобразования в миллиметры:", result)