#include <iostream>
using namespace std;
int main()
{
	    for (int i=1; i<=4; i=i+1)
	    {
	      cout<<"Count is: "<< i<<endl;
	    }
		cout<<"Done with for"<<endl;
		cin.get();
	  

}