#include using namespace std; using ll = long long; constexpr char newl = '\n'; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); const string a[3] = {"Shiitakerando", "Otsukakokusaibijutsukan", "Spring-8"}; int n; cin >> n; cout << a[n - 1] << newl; return 0; }