import math
diameter = int(input("Введите диаметр диска: "))
print("Длина стороны подарочной коробки: ", diameter/math.sqrt(2))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
import math
diameter = int(input("Введите диаметр диска: "))
print("Длина стороны подарочной коробки: ", diameter/math.sqrt(2))