def print_formatted(number): for i in range(1,number+1): a=oct(i) b=hex(i) c=bin(i) d=a.replace("0o","")