class Main {
public static void main(String[] args) {
int x = 153;
System.out.println(String.format("%8s", Integer.toBinaryString(x)).replaceAll(" ", "0"));
System.out.println(String.format("%16s", Integer.toBinaryString(x)).replaceAll(" ", "0"));
}
}
/*
run:
10011001
0000000010011001
*/