Files
code_olymp/Pascal/10.10.16/Program1.pas

9 lines
120 B
ObjectPascal

var
x,y:real;
begin
Read(x,y);
if (y <=2-x*x) and ((y>=x) or (y>=0)) then
print('ïðèíàäëåæèò')
else
Print('íåò')
end.