The percentage of men is 52 and the rest womens.print the total number of womens.

 The percentage of men is 52 and the rest are womens.print the total number of womens.


    n=int(input())

    print(int(n*(48/100)))

Comments