import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int cnt = 0; for(int i = 1; i <= N; i++) { if(i % 3 == 0 && i% 5 == 0) { cnt+=4; } else if(i % 3 == 0) { cnt+=2; } else if(i % 5 == 0) { cnt+=2; } } System.out.println(cnt); } }