Ответ:
a, b=map(float, input().split())
if a*a+b*b>4 and b<a and a<2 and b>0:
print("YES")
else:
print("NO")
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a, b=map(float, input().split())
if a*a+b*b>4 and b<a and a<2 and b>0:
print("YES")
else:
print("NO")