Untitled

 avatar
Egor
python
2 years ago
204 B
9
Indexable
Never
# ФИО: Матисов Егор Александрович
# Задание 3

a,b,c = map(float, input().split())
s1 = a*b
s2 = b*c
s3 = a*c
s4 = s1+s2+s3
S = 2*s4
V = a*b*c
print (S, ' ', V)