That all sounds *SO* difficult! Remember, it's just binary. Write the number out bitwise....
.....0 1 0 0 0 0 0 0
...................^---- put your pencil on this one and say "1"
Then keep moving left one digit and double the number until you get to the '1' digit.
so in this example you'd count "2", then "4", then "8", then "16", then "32". As you say "64" you land on the 1, and that's your number!
As you do this more, you do it in your head far, far quicker than you can even FIND the calculator.
If you need multiple bits, for example:
0 0 0 1 0 1 1
You do the same thing, but add them up. In this case "8" + "2" + "1". And if you can't add 8+2=10 and 10+1 = 11 in your head, you're not trying!