#include <iostream> using namespace std; int main(){ int p,n; cin>>p>>n; cout<<n<<"*"<<p<<"="<<n*p; return 0; }