/** * Sum two integer literals that are * stored first in variables. * * After compiling, run with: * $ java SumSome2 */ class SumSome2 { public static void main(String[] args) { int x = 2; int y = 3; System.out.println(x + y); } }