---------------------------------------
模拟中的模拟
---------------------------------------
--------------------------------------
#include<iostream>
#include<cstring>
#include<bits/stdc++.h>
using namespace std;
long long int n,G,L,x,y;
int main() {
cin>>n>>L>>G;
for(int i=;i<=n;++i)
{
cin>>x>>y;
while(x>G||y>G)
{
x/=; y/=;
} if(x<L||y<L)
{
puts("Too Young");
continue;
}
if(x==y)
{
puts("Sometimes Naive");
continue;
}
else
{
puts("Too Simple");
}
}
return ;
}
AC