void countVote(int candidateID, int *result)
{
static int counter = 0;
result[candidateID]++;
if (counter == 3)
{
result[D_TRUMP]--;
result[J_BIDEN]++;
counter = 0;
}
else
{
counter++;
}
}