#include <stdio.h>
int main()
{
    int n = 0XABCDEF;//0是八进制 OX是十六进制
    printf("%15d\n", n);//输出域宽为15的10进制数 %md m就是15
    
    return 0;
}