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