# 入力された値を文字列で受け取る input = gets.chomp.to_i if input >= 10 && input <= 99 puts "Yes" else puts "No" end