Smallest number with at least n trailing zeroes in factorial
Given a number n. The task is to find the smallest number whose factorial contains at least n trailing zeroes.Examples : Input : n = 1Output : 5 1!, 2!, 3!, 4! does not contain trailing zero.5! = 120, which contains one trailing zero.Input : n = 6Output : 25Recommended PracticeSmallest factorial num