N = 6 # length of numbers to generate
K = 4 # number of bits to be set
cur = (1<<K)-1 #smallest number witk K bits set
while cur < (1<<N):
print format(cur,'b')
#when you subtract 1, you turn off the lowest 1 bit
#and set lower bits to 1, so we can get the samallest 1 bit like this:
lowbit = cur&~(cur-1)
#when you add lowbit, you turn it off, along with all the adjacent 1s
#This is one more than the number we have to move into lower positions
ones = cur&~(cur+lowbit)
#cur+lowbit also turns on the first bit after those ones, which
#is the one we want to turn on, so the only thing left after that
#is turning on the ones at the lowest positions
cur = cur+lowbit+(ones/lowbit/2)
TiA9IDYgIyBsZW5ndGggb2YgbnVtYmVycyB0byBnZW5lcmF0ZQpLID0gNCAjIG51bWJlciBvZiBiaXRzIHRvIGJlIHNldAoKY3VyID0gKDE8PEspLTEgICNzbWFsbGVzdCBudW1iZXIgd2l0ayBLIGJpdHMgc2V0Cgp3aGlsZSBjdXIgPCAoMTw8Tik6CgkKCXByaW50IGZvcm1hdChjdXIsJ2InKQoJCgkjd2hlbiB5b3Ugc3VidHJhY3QgMSwgeW91IHR1cm4gb2ZmIHRoZSBsb3dlc3QgMSBiaXQKCSNhbmQgc2V0IGxvd2VyIGJpdHMgdG8gMSwgc28gd2UgY2FuIGdldCB0aGUgc2FtYWxsZXN0IDEgYml0IGxpa2UgdGhpczoKCWxvd2JpdCA9IGN1ciZ+KGN1ci0xKQoJCgkjd2hlbiB5b3UgYWRkIGxvd2JpdCwgeW91IHR1cm4gaXQgb2ZmLCBhbG9uZyB3aXRoIGFsbCB0aGUgYWRqYWNlbnQgMXMKCSNUaGlzIGlzIG9uZSBtb3JlIHRoYW4gdGhlIG51bWJlciB3ZSBoYXZlIHRvIG1vdmUgaW50byBsb3dlciBwb3NpdGlvbnMKCW9uZXMgPSBjdXImfihjdXIrbG93Yml0KQoJCgkjY3VyK2xvd2JpdCBhbHNvIHR1cm5zIG9uIHRoZSBmaXJzdCBiaXQgYWZ0ZXIgdGhvc2Ugb25lcywgd2hpY2gKCSNpcyB0aGUgb25lIHdlIHdhbnQgdG8gdHVybiBvbiwgc28gdGhlIG9ubHkgdGhpbmcgbGVmdCBhZnRlciB0aGF0CgkjaXMgdHVybmluZyBvbiB0aGUgb25lcyBhdCB0aGUgbG93ZXN0IHBvc2l0aW9ucwoJY3VyID0gY3VyK2xvd2JpdCsob25lcy9sb3diaXQvMikKCQo=