单项选择题

以下程序运行后,输出结果是( )。
a=1:b=2:c=3
a=a+b:b=b+c:c=b+a
If a<>3 Or b<>3 Then
 a=b-a:b=c-a:c=b+a
End If
Print a+b+c

A.16
B.3
C.6
D.8