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