|
Copy This Text
Copy all of the text shown below, starting with and including both of the slashes ("//"):
//
public class Demo
{
public static void main(String [] args)
{
int num1 = 3345;
int num2 = 9879;
int sum = num1 + num2;
System.out.println("Sum is: " + sum);
}
}
|