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