defmodule Main do def main do t = IO.gets("") |> String.trim() u = IO.gets("") |> String.trim() IO.puts("(#{t}#{u}#{t})/") end end