以下程序执行的结果是?
a=0 b=5 Sum=0 for i in range(3): if a>0: Sum+=a a+=1 elif b>1: Sum+=b a+=1 b+=1 print(Sum)
7
9
11
12