1defmodule Main do 2 {_, input} = 3 File.read("../input.txt") 4 5 input = input |> String.trim() 6 7 IO.puts(input) 8end