I will Brainliest and 15pts plzzz helppppppp
Tracing Code - Trace the code segments showing the variables' values in the columns while circling the final values.
4. # assume the user inputs the values: 9, 8, 2, -1
sum = 0 sum num
num = 0 0 0
while (num >= 0):
num = int(input("Enter a positive integer: "))
if (num % 2 == 0):
sum += num

print(sum) # the output is:_______________