阅读以下程序,程序输出的结果为?
a = 2
b = 8
if a > 1:
if b > 8:
print(a)
else:
print(b)
print(a + b)
print(a - b)
2
8
10
-6