import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int y = sc.nextInt();
System.out.println(x+"*"+y+"="+(x*y));
}
}
/**************************************************************
Problem: 1704
User: admin
Language: Java
Result: Accepted
Time:993 ms
Memory:42516 kb
****************************************************************/