public class sum { public static void main(String[] myarg) { int x; x = 77 + 23; System.out.println("The sum of 77 + 23 = " + x); } }