program prim2 ;
var x: integer ;
begin
writeln('введите число');
readln (x) ;
if (x>10) and (x<100) then writeln (' da ') else writeln (' net ') ;
end.