public class B { public static void main(String[] args) { int a = 123; int b = 456; System.out.println("sum is " + (a + b)); } }