#include<bits/stdc++.h>
using namespace std;
int main(){
    int j1,j2; 
	cin>>j1>>j2;
    cout<<j1<<"*"<<j2<<"="<<j1*j2;
}
/**************************************************************
	Problem: 1704
	User: wangyiyang
	Language: C++
	Result: Accepted
	Time:26 ms
	Memory:2072 kb
****************************************************************/