#include <stdio.h>

main()
{
  int i;

  i=1;
  while (i < 4) {
    printf("%d\n", i);
    i++;
  }
  return 0;
}

