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

{ input data }
var
    i   : longint;
    V   : array[0..14] of Int64;
    sol : array[0..14] of Int64;

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);
}

    for i:=0 to 14 do
        read(V[i]);
    readln();

    { insert your code here }

    { print result }
    for i:=0 to 14 do
        write(sol[i]);
    writeln();
end.
