import combLib as c
n=2
res = c.initComb(n)


print("Combinations")
while c.nxtComb(res):
    print(res)

    
