What is the error in this code byte B 50 B B * 50?

What is the error in this code byte B 50 B B * 50? Answer» b. * operator has converted b * 50 into int, which can not be converted to byte without casting.

Answer» b. * operator has converted b * 50 into int, which can not be converted to byte without casting.