var
n:integer;
begin
write ('Number: ');readln(n);
if n>0 then writeln ('Число положительное') else
if n<0 then writeln ('Число отрицательное') else writeln ('Ноль');
readln;
end.
Program Fom01;
USES CRT;
Var x:Integer;
Writeln('введите число x');
Readln(x);
If x>0 then
Writeln('положительное');
Else
If x<0 then
Writeln('отрицательное');
var
n:integer;
begin
write ('Number: ');readln(n);
if n>0 then writeln ('Число положительное') else
if n<0 then writeln ('Число отрицательное') else writeln ('Ноль');
readln;
end.
Program Fom01;
USES CRT;
Var x:Integer;
begin
Writeln('введите число x');
Readln(x);
If x>0 then
Writeln('положительное');
Else
If x<0 then
Writeln('отрицательное');
readln;
end.