require 'prime' n = gets.chomp.to_i a = (1..n).map {|i| i if n % i == 0 }.compact cnt = 0 a.each {|i| a.each { |j| cnt += 1 if i * j == n } } puts cnt