👤

What is the output of this program?

numA = 4
for count in range(2, 5):
numA = numA + count
print(numA)

Output: