#include <bits/stdc++.h>
using namespace std;
int main() {
    int a, b; 
    scanf("%d %d", &a, &b); 
    printf("%d*%d=%d\n", a, b, a*b); 
    return 0;
}
/**************************************************************
	Problem: 1704
	User: fuhoubin
	Language: C++
	Result: Accepted
	Time:7 ms
	Memory:2076 kb
****************************************************************/