def decimal_to_binary_recursive(n):
if n == 0:
return "0"
if n == 1:
return "1"
return decimal_to_binary_recursive(n // 2) + str(n % 2)