var a, b, c, n: integer;
begin
readln(a, b, c);
if a > b then n:= b else n:= a;
if n > c then n:= c;
writeln(n);
end.
var
step:<em> array [1..4] of real</em>;
begin
step[1] := 12*12;
step[2] := 5*5;
step[3] := step[1] + step[2];
step[4] := sqrt(step[3]);
writeln(step[4]);
end.
Это число определяется так: 3⁵ - 1 = 242₁₀
22222₃