module top;
genvar i;
for (i = 100; i < 101; i = i + 1)
initial $display("%b %0d", i, $bits(i));
endmodule