# Ask the user for a string and then prints # every other character of that string in reverse order. string = input("Enter a string") print(string[::-2])