var
  a, b, c: integer;

begin
  writeln('введите a');
  read(a);
  writeln('введите b');
  read(b);
  c := a + b;
  writeln('c=', c);
end.