#include <iostream>
using namespace std;

int main() {


int x =18;

 if(x%2 == 0 && x >= 2 && x <=5){
   	
   	cout << "x lies between 2 and 5" << endl;
   	
   }
   
   if(x%2 == 0 && x >= 6 && x<=20){
   	
   	cout << "x lies between 6 and 20" << endl;
   	
   }

	return 0;
}