#include <stdio.h>
#include <stdlib.h>
typedef struct node {
int data;
struct node *next;
} Node;

Node *circle_create(int n);
void count_off(Node *head, int n, int k, int m);

int main() {
int n, k, m;
scanf("%d%d%d", &n, &k, &m);
Node *head = circle_create(n);
count_off(head, n, k, m);
return 0;
}

Node *circle_create(int n) {
Node *temp, *new_node, *head;
int i;

// 创建第一个链表节点并加数据
temp = (Node *) malloc(sizeof(Node));
head = temp;
head->data = 1;

// 创建第 2 到第 n 个链表节点并加数据
for(i = 2; i <= n; i++) {
new_node = (Node *) malloc(sizeof(Node));
new_node->data = i;
temp->next = new_node;
temp = new_node;
}

// 最后一个节点指向头部构成循环链表
temp->next = head;

return head;
}

void count_off(Node *head, int n, int k, int m) {
Node *tempHeadBefore;
Node *tempHead;
tempHead=head;

int length=0;
while(length<n){
//
//printf("%d\n", tempHead->data);
tempHeadBefore=tempHead;
tempHead=tempHead->next;
//printf("%d\n", tempHead->data);
length++;
}

int countK=1;
while(countK<k){
//printf("%d\n", tempHead->data);
tempHeadBefore=tempHead;
tempHead=tempHead->next;
countK++;

}

while(n>0){


int countM=1;
while(countM<m){
// printf("%d\n", tempHead->data);
tempHeadBefore=tempHead;
tempHead=tempHead->next;
countM++;

}

printf("%d", tempHead->data);
tempHeadBefore->next=tempHead->next;
tempHead=tempHead->next;
n--;
if(n!=0){
printf(" ");
}
}
// printf("%d", tempHead->data);


return;
}