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