执行如下Python代码,输出结果是95。( )
n = 100 while n > 0: if n % 2: break elif n % 3 == 0: n -= 5 else: n -= 20 print(n)