module Yuki open System let pi = bigint 3 let solve n = pi * n * n let n = Console.ReadLine() |> int |> bigint solve n |> Console.WriteLine