public class Repeat_while
{
  public static void main(String args[])
  {

    int    count = 1;
    int    stop  = 4;
 
    while(count < stop) {
      System.out.println(count);
      ++count;
    }
  }
}
