100 #ABC162B. [ABC162B] FizzBuzz Sum

[ABC162B] FizzBuzz Sum

Score : 200200 points

Problem Statement

Let us define the FizzBuzz sequence a1,a2,...a_1,a_2,... as follows:

  • If both 33 and 55 divides ii, ai=FizzBuzza_i=\text{FizzBuzz}.
  • If the above does not hold but 33 divides ii, ai=Fizza_i=\text{Fizz}.
  • If none of the above holds but 55 divides ii, ai=Buzza_i=\text{Buzz}.
  • If none of the above holds, ai=ia_i=i.

Find the sum of all numbers among the first NN terms of the FizzBuzz sequence.

Constraints

  • 1N1061 \leq N \leq 10^6

Input

Input is given from Standard Input in the following format:

NN

Output

Print the sum of all numbers among the first NN terms of the FizzBuzz sequence.

15
60

The first 1515 terms of the FizzBuzz sequence are:

$1,2,\text{Fizz},4,\text{Buzz},\text{Fizz},7,8,\text{Fizz},\text{Buzz},11,\text{Fizz},13,14,\text{FizzBuzz}$

Among them, numbers are 1,2,4,7,8,11,13,141,2,4,7,8,11,13,14, and the sum of them is 6060.

1000000
266666333332

Watch out for overflow.