print(sum((0 if i % 3 else 2) + (0 if i % 5 else 2) for i in range(1, int(input())+1)))