Submitted by Shelkunchik98 on Fri, 11/26/2021 - 12:04
program Project2;
var a,b: integer;
begin
writeln('vvedite pervoe chislo');
readln(a);
writeln('vvedite vtoroe chislo');
readln(b);
if (a > b) then
writeln(12)
else
writeln(888);
readln();
end.
Submitted by Ilia_Sem on Thu, 11/04/2021 - 19:44
program training;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Classes
{ you can add units after this };
begin;
i := readln('luboe hislo');
if i
begin;
writeln(i + 7);
end;
if i > 15 then;
end;
end.