program HelloWorld;
 var
 stringin: string;
begin
writeln('Hello world!');
readln(stringin);
writeln(stringin);
readln;
end.