module Main where mytake 0 l = [] mytake n (x:xs) = x:(take (n-1) xs)