Ответ:
# 1 задача
a = float(input())
print(f'Площаь {a*a}, перемитер {a*4}')
# 2 задача
import math
a = int(input())
b = int(input())
n = a*b
print(math.sqrt(n))
Объяснение: на питоне
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
# 1 задача
a = float(input())
print(f'Площаь {a*a}, перемитер {a*4}')
# 2 задача
import math
a = int(input())
b = int(input())
n = a*b
print(math.sqrt(n))
Объяснение: на питоне