class Mul{public static void main(String[] args) { int num1 = 5, num2 = 15, mul; mul = num1 * num2;
System.out.println("Multiple these numbers: "+mul); }}
View all Questions