{ NOTE: it is recommended to use this even if you don't understand the following code. }

{ constraints }
const
    MAXN = 100;

{ input data }
var
    N, i  : longint;
    contacts : array[0..MAXN-1] of ansistring;
    codes    : array[0..10-1]   of ansistring;

begin
{
    uncomment the following lines if you want to read/write from files
    assign(input,  'input.txt');  reset(input);
    assign(output, 'output.txt'); rewrite(output);
}

    readln(N);
    for i:=0 to N-1 do
        readln(contacts[i]);
    for i:=0 to 10-1 do
        readln(codes[i]);

    for i:=0 to N-1 do
    begin
        { insert your code here and change what you print }
        writeln(contacts[i]);
    end;

end.
