defmodule Main do def main do IO.gets("") |> String.split() |> (fn ab -> "#{List.last(ab)} #{List.first(ab)}" end).() |> IO.puts() end end