class Multiplication
{
public static void main(String ar[])
{
Integer a, b, c;
a = Integer.parseInt(ar[0]);
b = Integer.parseInt(ar[1]);
c = a * b;
System.out.println("Multiplication : " + c);
}
}