import math n = int(input()) ans = set() for i in range(1, math.ceil(math.sqrt(n))+1): if n % i == 0: ans.add(str(i)+str(n//i)) ans.add(str(n//i)+str(i)) print(len(ans))