/** 
 * Testing program
 */
class Count2 {
    public static void main(String[] args) {
	int count=5;
        for (int i = 0; i < count; i++)
        {
        	System.out.println("In the loop: i=" + i); // Display the string.	

        }
        
    }
}
