the question is:
given n find the top 20 msb in bit representation of its factorial.
i am trying to solve the question by finding the power of 2 in logn time in factorial of a number
if its greater than or equal to 20 then top 20 msb are zero
but what to do when power of 2 in prime factorisation is less than 20 here i am getting stuck how to solve it?