 #include <stdio.h>

int main(int argc, char **argv)
{
    printf("This is a %d bit binary.\n", sizeof(void*) * 8);

    return(0);
}
