#include <stdio.h>
#include <stdlib.h>

int main(void)
{
	int x;
	x = 5;
	while (x == 5) {
		fprintf(stdout, "Inside the 1st loop.\n");
		x = 6;
	}
	fprintf(stdout, "Outside the 1st loop!\n");
	
	while (x == 5) {
		fprintf(stdout, "Inside the 2nd loop.\n");
	}
	fprintf(stdout, "Outside the 2nd loop!\n");

	return (EXIT_SUCCESS);
}
