What numbers will the following code print?
for x in range(1, 3):
for y in range(-2, 0):
print(x * y)Enter the output numbers in the correct order, all on one line, separated by spaces.
Remember:
The last number in a range is not included.
Pay close attention to the order in which the nested loops are executed.