import java.util.Scanner;
class Jtutorial1 {
    public static void main(String args[]){
        Scanner input = new Scanner(System.in);
        int i=0, j=0;
        
        //Dummy record / sentinel controlled loop.
        
        while (i < 100){
            j = i*5;
            System.out.println("The value of i is:" +  i  + "  And the value of J is:  "+   j  );
            i++;
            if (j > 400){
                break;
            }
        }
        System.out.println("Outside the loop -- ");
        
        
    }//end main
}//end class