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