#include <set>
#include <iostream>
using namespace std;

int main() 
{
	const int alpha=301;
	
	if(set{0,200,300,400}.count(alpha))
	{
		cout << "found" << endl;
	}
	else
	{
		cout << "not found" << endl;
	}
	
	return 0;
}