# This is a python file though it doesn't look like it, like a main script.
a = b = c = d = 0
a = 3
b = 4
if not b:
    c = 6
d = 7
print("xxx: %r %r %r %r" % (a, b, c, d))
