N = input() s = set() for i in xrange(1, 10**6+5): if N % i == 0: s.add(str(i) + str(N/i)) print len(s)