What is the output of the following program?
numA = 2
numB = 3
while numA > 0:
numA = numA-1
while numB > 0:
numB = numB-1
print (numA, numB)
