See More

public class SimpleMultiplication { public static void main(String[] args) { int a = 25; int b = 5; int result = a * b; // Multiplies a and b System.out.println("The result of " + a + " * " + b + " is: " + result); } }