{ constraints }
const
    MAXL = 8;

{ input data }
var
    date : array[0..MAXL] of char;

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(date);

    { insert your code here }

    writeln(42); { change 42 with actual answer }
end.
