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