#include <iostream>

using namespace std;

class LoopVar
{
	public:
	~LoopVar();
};

LoopVar::~LoopVar()
{
	cout << "Destructor running..." << endl;
}

int main()
{
	int k = 0;
	LoopVar start;
	for(LoopVar l = start;;)
	{
		cout << "Iteration " << k++ << endl;
		if(k == 10)
			break;
	}
	cout << "End of loop" << endl;
	return 0;
}