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