n = gets.chomp.to_i if n == 1 puts 1 exit end ans = 0 lim = (n**0.5).to_i (1..lim).to_a.each do |d| next if n % d > 0 e = n / d if d.to_s + e.to_s == e.to_s + d.to_s ans += 1 else ans += 2 end end puts ans