input

February 2020

program Input;

var
    text: string;
begin
    writeln('> ');
    readln(text);
    // > hello pascal
    writeln(text);
    // hello pascal
end.