#!/usr/bin/env ruby

print"ふとんが?: "
ans = gets.chomp

if ans == "ふっとんだ" || ans == "ふっ飛んだ"
  puts "正解!"
else
  puts "残念!"
  puts "正解は「ふっとんだ」でした。"
end
