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