#include<iostream>
using namespace std;
int main()
{
int n=0;
cout<<"Enter: ";
cin>>n;

while(n<=2)
{

cout<<"Enter again: ";
cin>>n;
n++;
}
}