N = int(input()) ans = (N // 15) * 16 for i in range(1, (N % 15) + 1): if i % 3 == 0 or i % 5 == 0: ans += 2 print(ans)