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