Description:
Take two numbers and print their sum.
Take two numbers and print their sum.
Java Code
public class AddNumbers {
public static void main(String[] args) {
int a = 10, b = 25;
System.out.println("Sum: " + (a + b));
}
}
Expected Output
Sum: 35