N = int(input()) countZ = 0 for i in range(1, N + 1): if i % 3 == 0: countZ += 2 if i % 5 == 0: countZ += 2 print(countZ)