Ввести с клавиатуры число является ли оно положительным
Var n:integer; begin readln(n); if n>0 then writeln('Yes') else writeln('No'); end.