#include <bits/stdc++.h>
#include <iostream>
using namespace std;
int main(){
std::ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
long long n,l,r,x[10001],y[10001];
cin>>n>>l>>r;
for(int i=1;i<=n;i++)
{
cin>>x[i]>>y[i];
}
for(int i=1;i<=n;i++)
{
if(x[i]<l||y[i]<l)
{
cout<<"Too Young"<<endl;
}
else{
if(x[i]!=y[i])cout<<"Too Simple"<<endl;
else{
while(x[i]>r)
{
x[i]-=x[i]/2;
}
if(x[i]<l){
cout<<"Too Young"<<endl;
}
else{
cout<<"Sometimes Naive"<<endl;
}
}
}
}
return 0;
}
不知道为什么60,求帮助