nums = [*range(100)]
print(*map(lambda x: f'Decimal {x:>{int(math.log10(nums[-1])) + 1}} = Binary {x:08b}', nums), sep='\n'
print(*map(lambda x: f'Decimal {x:>{int(math.log10(nums[-1])) + 1}} = Hex {x:X}', nums), sep='\n'
print(*map(lambda x: f'Decimal {x:>{int(math.log10(nums[-1])) + 1}} = Binary {x:08b}', nums), sep='\n'
print(*map(lambda x: f'Decimal {x:>{int(math.log10(nums[-1])) + 1}} = Hex {x:X}', nums), sep='\n'