Turn ON the ith bit - forge your number with bitwise OR!
To turn ON (set to 1) the ith bit of a number, use OR with a mask:
The mask (1 << i) has
only bit i set to 1. ORing with this mask ensures bit i becomes 1,
leaving other bits unchanged.