#include <bits/stdc++.h>

using namespace std;

int main()
{
	uint64_t max = 42;
	
	for( uint64_t n = 3; n < 8; ++n ) {
		for( uint64_t a = 1; a < max; ++a ) {
			for( uint64_t b = 1; b < max; ++b ) {
				for( uint64_t c = 1; c < max; ++c ) {
					if( pow( a, n ) + pow( b, n ) == pow( c, n ) ) {
						cout << "Не-не-не, Дэвид Блэйн!!!\n";
						break;
					}
				}
			}
		}
	}
	
	cout << "SOSNOOOLEY\n";
}