module HW13 where

hw13 :: Int -> Int
hw13 n =
  if (n == 0)
    then ... -- replace "..." with the correct expression 
    else ... -- replace "..." with the correct expression