10. Given the following program s1=input("Enter the first string ") s2 =input("Enter the second string ") if isReverse(s1, s2): print "The string", s2, "is the reverse of the string", s1 else: print "The string", s2, "is NOT the reverse of the string", s1 Implement the function isReverse that takes two string arguments and returns True if the second string is the reverse of the first string. It returns false otherwise. Do not use any built-in function or method; instead, do it by looping through the characters of the strings. 14. Write a function named capitalize EnglishChars that takes a string argument and returns a string constructed from the string argument such that all the lower-case English characters are capitalized.