Ответ:
var x,y: real;
begin
readln(x);
readln(y);
if ((x*x + y*y) >= 4) and (y <= x) and (x <= 2) and (x >= 0) then
writeln ('Yes')
else
writeln ('No');
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
var x,y: real;
begin
readln(x);
readln(y);
if ((x*x + y*y) >= 4) and (y <= x) and (x <= 2) and (x >= 0) then
writeln ('Yes')
else
writeln ('No');
end.