''' Purpose: separately prompt for a string s and a list of integers numbers. The program displays the string formed by using numbers as indices into s. ''' # get the string of interest for examination ... # get the numeric inputs ... # accumulate from the numeric inputs a list of integer indices. ... # acccumulate output string by using the indices one-at-a-time to look into s ...