a certain program input ten numbers via keyboard and add up all the numbers less than zero

Are you looking for code?
(This is in python, but easy to adapt for other languages)
Python:
def sum_below_zero():
    total = 0
    temp_val = 0
    for i in range(10):
        temp_val = int(input("Input a number: "))
        if temp_val < 0:
            total += temp_val
     
    return total