defmodule Main do def solve(n, n, t) do n + t end def solve(a, b, t) do solve(a + 1, b, a + t) end def main do b = IO.gets("") |> String.trim |> String.to_integer IO.puts "1 #{b}" end end