uses
  crt;
var
  kal:string;
begin
  while not eof(input) do
  begin
    readln(kal);
  end;
  writeln(kal);
end.