a,b = float(input()), float(input())
d = a**2 + b**2
p = (a+b)*2
print("Диагональ равна:",d)
print("Периметр равен:",p)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a,b = float(input()), float(input())
d = a**2 + b**2
p = (a+b)*2
print("Диагональ равна:",d)
print("Периметр равен:",p)