What is the output of this program?

numbers = [3, 4, 5]
x = sum (numbers)
print(x)
7
9
12
X

The output of this program is 12.