// Justin C. Miller
// University of Wisconsin Oshkosh
// Made for: http://www.geocities.com/neonprimetime.geo/index.html
// Date: 2001
// Borland Builder 4.0
// Example of an infinite loops
#include <iostream.h>

int main()
{
	int a = 3 ;
	int b = 3 ;

	do
	{
		cout << "This will repeat over and over!" << endl ;
	}while( a == b ) ;

	// this code will never reached because the do-while is infinite
	cout << "Please enter a..." << endl ;
	cin >> a ;
	cout << "Please enter b..." << endl ;
	cin >> b ;
	return 0 ;
}