下方代码的运行结果为?
num = [3, 6, 9, 12] if num[3] == 12: print(num[0] + num[1]) else: print(num[2] + num[3])
9
12
18
21