#include<stdio.h>
int main(void)
{
    printf("%#o ",1234);//加上#表示在八进制前导输入0
    printf("%#0X",1234);//加上#号能显示题目的要求
    return 0;
}