#D13182. Nearest Interesting Number

    ID: 10964 Type: Default 1000ms 256MiB

Nearest Interesting Number

Nearest Interesting Number

Polycarp knows that if the sum of the digits of a number is divisible by 3, then the number itself is divisible by 3. He assumes that the numbers, the sum of the digits of which is divisible by 4, are also somewhat interesting. Thus, he considers a positive integer n interesting if its sum of digits is divisible by 4.

Help Polycarp find the nearest larger or equal interesting number for the given number a. That is, find the interesting number n such that n ≥ a and n is minimal.

Input

The only line in the input contains an integer a (1 ≤ a ≤ 1000).

Output

Print the nearest greater or equal interesting number for the given number a. In other words, print the interesting number n such that n ≥ a and n is minimal.

Examples

Input

432

Output

435

Input

99

Output

103

Input

237

Output

237

Input

42

Output

44

inputFormat

Input

The only line in the input contains an integer a (1 ≤ a ≤ 1000).

outputFormat

Output

Print the nearest greater or equal interesting number for the given number a. In other words, print the interesting number n such that n ≥ a and n is minimal.

Examples

Input

432

Output

435

Input

99

Output

103

Input

237

Output

237

Input

42

Output

44

样例

99
103

</p>