In java we use '+' for String concatenation. So in the System.out.println method you are trying to concatenate without using '+'.
Try this
System.out.println("The sum of the two numbers is "+ (a+b));
Also try to understand the difference between above line and the following line
System.out.println("The sum of the two numbers is "+ a+b);