Drop links or images here to add them to the editor.

Count evens in range ⭐⭐

Read two integers A and B. Count how many even numbers are between A and B (inclusive).

Input

Two integers:

  1. A
  2. B

Output

Print a single number: the count of even numbers between A and B (inclusive).

Example

Input:

3 9

Output:

3