defmodule Main do def main do IO.gets("") |> String.trim() |> String.replace("treeone", "forest") |> IO.puts() end end