Untitled

Anonymous
python
07/05/2022 9:46 AM
368 B
18
Indexable
Калинин Петр Николаевич
№3

a = int(input())
b = int(input())
c = int(input())

V = a * b * c #Объём
S = 2 * (a * b + b * c + a * c) #Площадь поверхности

print('Объём:', V)
print('Площадь поверхности:', S)
Editor is loading...