#include #include int main(void) { printf("%d\n", 72); printf("%d\n", 0110); printf("%d\n", 0x48); return EXIT_SUCCESS; } 01001 10 11 12 13 14 15