var
a,b,c,s:integer;
begin
readln(a,b,c);
if (a mod 2 = 0) and (b mod 2 = 0) and (c mod 2 = 0) then
begin
S:=a+b+c; writeln('сумма равна ', S);
end;
if (a mod 2 <> 0) and (b mod 2 <> 0) and (c mod 2 <> 0) and (a>b) and (b>c) then
begin
writeln('наибольшее число ', A);
writeln('наименьшее число ', C);
end;
else
writeln('a= ',a,' b= ', b, ' c= ',c);
readln;
end.