Sandwich
View as PDFYou are about to make a delicious sandwich with  
 layers. You are going to put the sandwich together layer by layer. For each layer, you may choose to put it at either the bottom or the top of the currently made sandwich.
At the end of it all, you wish to observe your delicious sandwich – output the layers of the sandwich from top to bottom.
Input Specification
The integer , followed by a sequence of 
1s and 0s describing the process you followed creating the sandwich. The  character defines what you did with the 
 layer. 
0 indicates you are putting the layer at the bottom of the sandwich, and 1 indicates you are putting it at the top.
Output Specification
The layers of the sandwich, in order from top to bottom.
Sample Input
5
00110
Sample Output
4
3
1
2
5
Comments