#include <stdio.h>

main()
{
  int i;
  int x;
  for (i = 0; i < 256; i++) {
    printf("Before chopping: %3d ", i);
    x = i;
    x &= ~077;
    printf("After chopping: %3d\n", x);
  } /* for */
} /* main */
