# your code goes here
for condition in True, False:
    print(
        [] if condition else True,
        condition and [] or True
    )