def test():
    x, y, z = 1, 2, 3
    z, y, x = [1, 2, 3]
    print x
    print y
    print z

test()
