#include<stdio.h>
int main() {
    int n = 0XABCDEF; //0X是十六进制前导,0是八进制前导。
    printf("%15d", n);
    return 0;
}