Var
a,b,c:integer;
Begin
Write('Введите три числа: ');ReadLn(a,b,c);
if b<0 then Write(a,b)<br>else Write(a,'+',b);
if c<0 then Write(c,' = ',a+b+c)<br>else Write('+',c,' = ',a+b+c);
WriteLn;
if b<0 then Write(a,'*(',b,')')<br>else Write(a,'*',b);
if c<0 then Write('*(',c,') = ',a*b*c)<br>else Write('*',c,' = ',a*b*c);
WriteLn;
if b<0 then Write('(',a,b)<br>else Write('(',a,'+',b);
if c<0 then Write(c,')/3 = ',(a+b+c)/3)<br>else Write('+',c,')/3 = ',(a+b+c)/3);
End.