n = int(input()) z = 0 for i in range(1, n+1): if i % 15 == 0: z += 4 elif i % 5 == 0 or i % 3 == 0: z += 2 print(z)