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