# your code goes here

n=3
adj = [[]]*n

print adj

adj[0].append(1)

print adj # expecting [[1], [], []]