#include using ll = std::int64_t; ll f(int i){ return (1ll << (1 + 2 * i)) - 1; } int main(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); ll N, K; std::cin >> N >> K; K -= std::max(N - 30, 0); if(K <= 0){ std::cout << 'y' << std::endl; return 0; } N = std::min(N, 30); for(int i=N;i>1;i--){ K -= 1; if(K <= 0){ std::cout << 'y' << std::endl; return 0; } ll l = f(i - 1); if(K <= l){ continue; } K -= l; if(K <= l){ continue; } K -= l; K -= 1; if(K <= 0){ std::cout << 's' << std::endl; return 0; } if(K <= l){ continue; } K -= l; if(K <= l){ continue; } K -= l; K -= 1; if(K <= 0){ std::cout << 'n' << std::endl; return 0; } } std::cout << "yuusaan"[(K - 1) % 7] << std::endl; }