# frozen_string_literal: true def solve case N when 1 then 'Shiitakerando' when 2 then 'Otsukakokusaibijutsukan' when 3 then 'Spring-8' end end N = gets.to_i puts solve