program sum;

var
  a, b: Integer;

begin
  Read(a, b);
  Write(a + b);
end.