defmodule Main do def main do IO.gets("") |> String.trim() |> (fn c -> "1 " <> c end).() |> IO.puts() end end