
SOURCE CODE
class Multiplication {
public static void main(String args[]) { // start of main() method.
int a=9, b=12, c; // initializing a & b of type integer.
c = a * b; //Multiplying a & b using "*" operator and storing in c.
System.out.println("Multiplication is : "+c); // printing result.
} // end of main() method.
} // end of class.
OUTPUT
Multiplication...