public class Main {
    public static void main(String[] args) {
        int b = 1234;
        System.out.printf("%#o %#X",b,b);
    }
}