n = int(input()) a = n // 3 b = n // 5 c = n // 15 print(2*(a-c) + 2*(b-c) + 4*c)