Техническое собеседование Python Middle Апрель 2025
Задача 1:
Перепиши более лаконично:
while True:
force = int(input("Enter the force value: "))
if force > 0:
break
while True:
distance = int(input("Enter the distance value: "))
if distance > 0:
```