defmodule Main do def main do x = IO.gets("") |> String.to_integer |> Enum.sum s = IO.gets("") IO.puts(x ++ s) end end