unsigned char i = 81;
while(i--)
{
if(i / 9 % 3 == i % 9 % 3)
continue;
printf("A = %d, B = %d
", i / 9 + 1, i % 9 + 1);
}