eolymp
bolt
Try our new interface for solving problems
Problems

Calling All Programmers

Calling All Programmers

A local radio station is holding a phone-in contest, and deejay J-Z Phus is in charge of administering the contest. He goes on the air at random times and announces things like "The fifth caller will get a chance for the grand prize". At this point, the switchboard lights up with dozens of callers. All these callers show up on a monitor in front of J-Z numbered 1, 2, 3 etc. J-Z could just pick caller number 5 at this point, but since he figures that everyone basically called in at the same time, he has decided on a different method. He picks a random number - say 7 - and then starts eliminating every seventh caller. If he hits the end of the switchboard while counting, he cycles back to the beginning, but once a caller is eliminated, their position is no longer used in the count. After eliminating 4 callers, he moves down 7 more positions and obtains his "fifth" caller. The figure below show how this would work if J-Z's switchboard held 10 callers. In this case, the caller in position 3 is selected as the "fifth" caller.

prb6644.gif

Of course, the choice of "fifth" caller, the number of callers, and the use of the number 7 can change from call-in to call-in. You are to write a general program to determine which caller is selected given all of the pertinent information.

Input

Each test consists of a single line containing three positive integers n m k, where n is the number of callers on the switchboard, and m is the number of positions J-Z skips over each time until he gets to the k-th caller. The value of n will always be ≥ k. In the above example, n = 10, m = 7 and k = 5. The maximum value for any of these values is 200. A line containing three zeros will terminate input.

Output

For each test case, output the position of the caller chosen as the k-th caller.

Time limit 1 second
Memory limit 128 MiB
Input example #1
10 7 5
20 1 20
0 0 0
Output example #1
3
20
Source 2013 ACM East Central North America