Untitled

Anonymous
plain_text
09/11/2021 2:15 PM
288 B
21
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...