Answer:
Here's the pseudocode for the PrintValues() function:
function PrintValues(numberA, numberB)
for i = numberA to numberB
print i * 1000
print newline
end for
end function
Step-by-step explanation:
This function takes two integer parameters numberA and numberB. It then loops through all integers between numberA and numberB, inclusive. For each integer, it multiplies it by 1000 and prints the result, followed by a newline.