import java.util.*; import java.io.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); PrintWriter ou = new PrintWriter(System.out); int x = Integer.parseInt(sc.next()); double q = Math.pow(10 , 6); for(int i = 2 ; i < x ; i++){ double p = 0; for(int j = 1 ; j <= Math.pow(10 , 6) ; j++){ q -= Math.pow(10 , 6) / Math.pow(j + 1 , i); } } ou.println((int)q - 1); sc.close(); ou.flush(); } }