# Imagine the user enters a string and a substring. # Replace every other letter in the incoming string with the substring, # without using any built-in functions/methods besides len() # (i.e., you may NOT use .index()). # For example, if the string was happy and the substring was cat, # the result would be hcatpcaty.