You are given two integers a and b. You can perform a sequence of operations: during the first operation you choose one of these numbers and increase it by 1; during the second operation, you choose one of these numbers and increase it by 2, and so on. You choose the number of these operations yourself.
For example, if a=1 and b=3, you can perform the following sequence of three operations:
Calculate the minimum number of operations required to make a and b equal.
INPUT:
CONSTRAINTS:
OUTPUT:
For each test case print one integer — the minimum numbers of operations required to make a and b equal.