N = int(input()) S = set() for i in range(1, int(N**.5)+1): if N%i == 0: S.add(str(i) + str(N//i)) S.add(str(N//i) + str(i)) print(len(set(S)))