Files
code_olymp/Pascal/10.10.16/Program3.pas

9 lines
144 B
ObjectPascal

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