运行下面程序,输出的结果是()。
st1 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} st2 = {x * 2 for x in st1} print(sum(st1 | st2))
55
110
135
165