#include <stdio.h>

typedef int customer_id;
typedef int action_code;

int change_customer(customer_id x, action_code y)
{
	return 1;
}

int main(void) {
	customer_id a;
	action_code b;
	
	change_customer(b, a);
	return 0;
}
