Problem
In SMl write function by also applying nontail recursion steps in given problems
i. Write a function product to compute product of arbitrary two integers. Take care of the sign. product(2,~3) > ~6
ii. Write a function delnthc to delete n-th character of a string. You may assume input string is always longer than n. delnthc("abcdef",4) > "abcef"