public static void main(String args[])
{
int x, y, z;
x = 8;
y = 45;
z = x + y;
System.out.println(“Sum of the integers = ” + z);
}
public static void main(String args[])
{
int x, y, z;
x = 8;
y = 45;
z = x + y;
System.out.println(“Sum of the integers = ” + z);
}