ZJUTOJ2020 --------3,画三角形
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
int main()
{
int T;
cin>>T;
while(T--)
{
int n;
cin>>n;
if(n<=2)
{
cout<<"Hugin"<<endl;
}
else
{
cout<<"Steve"<<endl;
}
}
return 0;
}