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