Let’s write a function called ispalindrome which takes a string named input and returns a bool The function returns true if the string is a palindrome and false if not. palindromes are symmetrical strings. That is a string that reads the same backwards is palindrome. palindromes: “hih”, “i”, “bob”, “tenet”, “soos”, “madam” . not palindromes: “join”, “hat”, “frat”, “supper”, “rhythm”. The code is mixed up and contains extra blocks. Put the necessary blocks in the correct order.