Untitled
Anonymous
plain_text
09/11/2021 3:39 PM
288 B
10
Indexable
x, y = map(float, input().split())
if (x<=1) and (y>= 1-x) and (y>= 0):
if (y >= 2*x*x) and (x < 0):
print("YES")
elif (x>=0):
print("YES")
else:
print("NO")
else:
print("NO")
Editor is loading...