from math import sqrt
a = float(input())
b = float(input())
o = float(input())
c = sqrt(a**2+b**2)
if(o <= c):
print("ДА")
else:
print("НЕТ")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
from math import sqrt
a = float(input())
b = float(input())
o = float(input())
c = sqrt(a**2+b**2)
if(o <= c):
print("ДА")
else:
print("НЕТ")