#include <cstdio>#include <cstring>#include <cmath>#include <iostream>#include <algorithm>using namespace std;const double eps = 1e-9;long long n;int main() { while (scanf("%lld", &n) == 1) { if (n <= 5) printf("The stranger will win!!n"); else if (n <= 7) printf("It's an endless game!!n"); else printf("I will win!!n"); }}


