document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. bool IsBitSet(int b, int pos)
  2. {  return (b & (1 << pos)) != 0;  }
');