program suma;
var a,b,S:longint;
begin
assign(f,'input.txt');reset(f);
assign(f,'output.txt');rewrite(g);
read(f,a,b);
S:=a+b;
writeln(g,S);
end.