program ideone;
var a,b,t:real;
begin
a:=3;
b:=4;
t:=(a+b);
writeln(t);
end.