#D4208. Remainder Minimization 2019

    ID: 3496 Type: Default 2000ms 1073MiB

Remainder Minimization 2019

Remainder Minimization 2019

You are given two non-negative integers L and R. We will choose two integers i and j such that L \leq i < j \leq R. Find the minimum possible value of (i \times j) \mbox{ mod } 2019.

Constraints

  • All values in input are integers.
  • 0 \leq L < R \leq 2 \times 10^9

Input

Input is given from Standard Input in the following format:

L R

Output

Print the minimum possible value of (i \times j) \mbox{ mod } 2019 when i and j are chosen under the given condition.

Examples

Input

2020 2040

Output

2

Input

4 5

Output

20

inputFormat

input are integers.

  • 0 \leq L < R \leq 2 \times 10^9

Input

Input is given from Standard Input in the following format:

L R

outputFormat

Output

Print the minimum possible value of (i \times j) \mbox{ mod } 2019 when i and j are chosen under the given condition.

Examples

Input

2020 2040

Output

2

Input

4 5

Output

20

样例

4 5
20