100 #ABC083A. [ABC083A] Libra

[ABC083A] Libra

Score : 100100 points

Problem Statement

A balance scale tips to the left if L>RL>R, where LL is the total weight of the masses on the left pan and RR is the total weight of the masses on the right pan. Similarly, it balances if L=RL=R, and tips to the right if $L.

Takahashi placed a mass of weight AA and a mass of weight BB on the left pan of a balance scale, and placed a mass of weight CC and a mass of weight DD on the right pan.

Print Left if the balance scale tips to the left; print Balanced if it balances; print Right if it tips to the right.

Constraints

  • 1A,B,C,D101\leq A,B,C,D \leq 10
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

AA BB CC DD

Output

Print Left if the balance scale tips to the left; print Balanced if it balances; print Right if it tips to the right.

3 8 7 1
Left

The total weight of the masses on the left pan is 1111, and the total weight of the masses on the right pan is 88. Since 11>811>8, we should print Left.

3 4 5 2
Balanced

The total weight of the masses on the left pan is 77, and the total weight of the masses on the right pan is 77. Since 7=77=7, we should print Balanced.

1 7 6 4
Right

The total weight of the masses on the left pan is 88, and the total weight of the masses on the right pan is 1010. Since 8<108<10, we should print Right.