There are 7 men standing in a line: 1234567. The third man is brutally executed: 124567. The executioner continues down the line and executes the third man: 12457. He proceeds in this way, returning to the beginning of the line when he reaches the end: 1457, 145, 14, 4. Write a program that reads two integers, m and c, and prints the order of executions when there are m men counted by c. For example, with input 7 3, your program will print 3 6 2 7 5 1 4. With input 12 4, your program will print 4 8 12 5 10 3 11 7 6 9 2 1. You may assume that m and c do not exceed 100.