Req:
- map the flags to the bit position
- return what is set
0 - 255
0 -> return nothing
255 -> all the flags are set
Plan:
- keep shifting to the right and take & with 1U
- if the above is 1 then as per the iteration print the flag
- if not then skip or print nothing