Here's a simple Python program that takes a list of integers as input and outputs the negative integers in descending order.
# Get a list of integers from input
input_list = list(map(int, input().split()))
# Filter and sort negative integers in descending order
negative_numbers = sorted(filter(lambda x: x < 0, input_list), reverse=True)
# Output the result with each value followed by a space
output_str = ' '.join(map(str, negative_numbers))
print(output_str, end=' ')
You can run this program and input a list of integers, and it will output the negative integers in descending order, each followed by a space. For example:
Input: 10 -7 4 -39 -6 12 -2
Output: -2 -6 -7 -39