#include using namespace std; using ll = long long; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n; string s; cin >> n >> s; cout << (s.find("404") == string::npos ? "Not" : "") << "Found\n"; }