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