program Brian(input, output);

type
  weekdays = (Monday, Tuesday, Wednesday, Thursday, Friday);

var
  day: weekdays;
  i: integer;

begin

  for i := 1 to 5 step 2 do
    writeln(1)

end.
