defmodule Main do def main do IO.gets("") |> String.trim() |> String.to_integer() |> (&(&1 * 10)).() |> IO.puts() end end