#Python, №1
a,b,c = float(input()), float(input()), float(input())
d = (a+b+c)/3
print(d)
# №2
a,b = float(input()), float(input())
d = 1/7 * a**3*b - 2 * a * b**2 * (a+b)
Объяснение:
Python, №1
#Python, №1
a,b,c = float(input()), float(input()), float(input())
d = (a+b+c)/3
print(d)
# №2
a,b = float(input()), float(input())
d = 1/7 * a**3*b - 2 * a * b**2 * (a+b)
print(d)
Объяснение:
Python, №1
a,b,c = float(input()), float(input()), float(input())
d = (a+b+c)/3
print(d)
# №2
a,b = float(input()), float(input())
d = 1/7 * a**3*b - 2 * a * b**2 * (a+b)
print(d)