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