Throwing Cards Away I: N With Card 1 at The Top and Card N at The Bottom
Throwing Cards Away I: N With Card 1 at The Top and Card N at The Bottom
Input
Each line of input (except the last) contains a number
n ≤ 50. The last line contains ‘0’ and this line should
not be processed.
Output
For each number from the input produce two lines of
output. The first line presents the sequence of dis-
carded cards, the second line reports the last remain-
ing card. No line will have leading or trailing spaces.
See the sample for the expected format.
Sample Input
7
19
10
6
0
Sample Output
Discarded cards: 1, 3, 5, 7, 4, 2
Remaining card: 6
Discarded cards: 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 4, 8, 12, 16, 2, 10, 18, 14
Remaining card: 6
Discarded cards: 1, 3, 5, 7, 9, 2, 6, 10, 8
Remaining card: 4
Discarded cards: 1, 3, 5, 2, 6
Remaining card: 4