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

int main() {
	bool found = regex_search("<html>",regex("h.*l"));// works for "<.*>"
    cout<<(found?"found":"not found");
    return 0;
}