丝路新程的安防系统逻辑门判断。以下程序的输出结果是?
a, b, c = True, False, True if (a and b) or (b and c) or (a and c): if not (a or b or c): print("Safe") else: print("Warning") else: print("Normal")
Safe
Warning
Normal
无输出