{"raw_statement":[{"iden":"problem statement","content":"A balance scale tips to the left if $L>R$, where $L$ is the total weight of the masses on the left pan and $R$ is the total weight of the masses on the right pan. Similarly, it balances if $L=R$, and tips to the right if $L<R$.\nTakahashi placed a mass of weight $A$ and a mass of weight $B$ on the left pan of a balance scale, and placed a mass of weight $C$ and a mass of weight $D$ on the right pan.\nPrint `Left` if the balance scale tips to the left; print `Balanced` if it balances; print `Right` if it tips to the right."},{"iden":"constraints","content":"*   $1\\leq A,B,C,D \\leq 10$\n*   All input values are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$A$ $B$ $C$ $D$"},{"iden":"sample input 1","content":"3 8 7 1"},{"iden":"sample output 1","content":"Left\n\nThe total weight of the masses on the left pan is $11$, and the total weight of the masses on the right pan is $8$. Since $11>8$, we should print `Left`."},{"iden":"sample input 2","content":"3 4 5 2"},{"iden":"sample output 2","content":"Balanced\n\nThe total weight of the masses on the left pan is $7$, and the total weight of the masses on the right pan is $7$. Since $7=7$, we should print `Balanced`."},{"iden":"sample input 3","content":"1 7 6 4"},{"iden":"sample output 3","content":"Right\n\nThe total weight of the masses on the left pan is $8$, and the total weight of the masses on the right pan is $10$. Since $8<10$, we should print `Right`."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}