• We hope you have a fantastic holiday season to close out 2025! Thank you all so much for being part of the Tom's Guide community!

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
 
We tend to frown on people asking homework questions here. You're meant to be learning something, and handing you the solution on a platter is effectively cheating.

Paste some code you've tried. Explain what language you're using.