#include <stdio.h>

int main (void) 
{
	unsigned char a, b;

	a = 0b11001010;
	b = 0b10100101;

	printf("a = %o\nb = %o\n", a, b);


	return 0;
}
