I am new to Java. So I am unable to understand the reason why this exception is occurring. Here is my code:
class St
{
public static void main(String s[])
{
byte b1,b2,b3;
b1=10;
b2=5;
b3=b1+b2;
System.out.println(b3);
}
}
Please explain.