29 lines
365 B
Python
29 lines
365 B
Python
|
if True:
|
||
|
if False:
|
||
|
print("fail")
|
||
|
|
||
|
else:
|
||
|
print("pass")
|
||
|
|
||
|
if True:
|
||
|
if False:
|
||
|
print("fail")
|
||
|
# test
|
||
|
else:
|
||
|
print("pass")
|
||
|
|
||
|
if True:
|
||
|
if False:
|
||
|
print("fail")
|
||
|
# test
|
||
|
else:
|
||
|
print("pass")
|
||
|
|
||
|
if True:
|
||
|
if False:
|
||
|
print("fail")
|
||
|
|
||
|
#test
|
||
|
else:
|
||
|
print("pass")
|