// two_loops.cpp : Defines the entry point for the console application.
//

// #include "stdafx.h"

#include <stdio.h>

int main()
{

int j; 
j = 0 ;

while (j < 3) 
{ 
	printf("The value of j = %d\n",j); 
	j = j + 1; 
} 
printf("Done!\n"); 



	return 0;
}