42.0
Объяснение:
Python
a=float(input())
b=float(input())
c=float(input())
print(float(a)+int(b)+float(c))
ввод:
14.5
12.3
15.5
вывод:
42.0
Объяснение:
Python
a=float(input())
b=float(input())
c=float(input())
print(float(a)+int(b)+float(c))
ввод:
14.5
12.3
15.5
вывод:
42.0