var
  counter : Integer;
begin
  counter := 1;
  writeln(' 1. make breakfast');
  counter := counter + 1;
  writeln(' 2. send kid to school');
  counter := counter + 1;
  writeln(' 3. pick up coffee');
  counter := counter + 1;
  writeln(' 4. go to work');
  counter := counter + 1;
  writeln(' 5. call dentist');
  counter := counter + 1;
  writeln(' 6. lunch with spouse');
  counter := counter + 1;
  writeln(' 7. book ticket to visit parents');
  counter := counter + 1;
  writeln(' 8. leave work');
  counter := counter + 1;
  writeln(' 9. pick up kids');
  counter := counter + 1;
  writeln('10. pick up dinner');
  counter := counter + 1;
  writeln('11. go home');
  counter := counter + 1;
end.
