Ответ:
Код на Python
Объяснение:
a = float(input())
b = float(input())
perimetr = (a + b) * 2
S = a * b
print(perimetr)
print(S)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
Код на Python
Объяснение:
a = float(input())
b = float(input())
perimetr = (a + b) * 2
S = a * b
print(perimetr)
print(S)