import java.util.*; import java.lang.*; import java.io.*; public class Main { public static void main (String[] args) throws java.lang.Exception { // your code goes here // 入力 Scanner sc = new Scanner(System.in); int N = sc.nextInt(); // カウント Set hs = new HashSet<>(); for(int i = 1; i <= N; i++){ int sho = N / i; if(!hs.contains(sho)){ hs.add(sho); } } // 出力 System.out.println(hs.size()); } }