This repository has been archived on 2025-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
python_it_top/Practica2/task_3_rpo254.py
2025-09-11 18:33:59 +05:00

6 lines
203 B
Python

one_diag = int(input("Введите 1 длину диагонали :: "))
two_diag = int(input("Введите 2 длину диагонали :: "))
romb_s = (one_diag * two_diag) // 2
print(romb_s)