program tingimus; var n: integer; begin write('n='); readln(n); if (n>10) then writeln('n>10') else writeln('n<=10'); end.