Объяснение:
a, b, c = map(int, input().split())
s=a+b+c
p=a*b*c
m=s/3
print('{}+{}+{}={}'.format(a, b, c, s))
print('{}*{}*{}={}'.format(a, b, c, p))
print('({}+{}+{})/3={}'.format(a, b, c, m))
Var
s:string;
t,c:string;
function Palindrome(s:string):boolean;
var
i:integer;
begin
for i:= 1 to s.Length div 2 do
if s[i] <> s[s.Length-i+1] then
begin
Palindrome:=false;
exit;
end;
Palindrome:= true;
end;
begin
Readln(s);
c:=copy(s,1, s.Length div 2);
t:=copy(s,s.Length div 2 + 1, s.Length);
if (Palindrome(s))and(Palindrome(c))and(Palindrome(t)) then
Writeln('YES')
else
Writeln('NO');
end.
<u>Пример:</u>
ACAACA
YES
Наливаем ведро 10 литров и выливаем в 6 и в 3-остается 1 литр
этот литр в пустую 3-х литровую переливаем
из 10 выливаем в 6, остается 4 -добавляем литр из 3-х литровой- получаем 5