#include <stdio.h>

int main() {
    printf("%15d",0xABCDEF);//十六进制需要写出前导0x
    return 0;
}