class P1 { public static void main(String[] _args) { int a = 44; int b = 56; System.out.println(a + " + " + b + " = " + (a + b)); } }