#include <bits/stdc++.h>
using namespace std;
int main(){
   int a,s,d;
   cin>>a>>s;
   d=a*s;
   cout<<a<<"*"<<s<<"="<<d;

}
       //1704               
/**************************************************************
	Problem: 1704
	User: huangluowei
	Language: C++
	Result: Accepted
	Time:9 ms
	Memory:2072 kb
****************************************************************/