#include using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; int main(){ ll A, B; cin >> A >> B; if(A % 100 == 0 && B % 100 == 0){ int n = 0, m = 0; while(A % 10 == 0){ n++; A/=10; } while(B % 10 == 0){ m++; B/=10; } cout << A*B; rep(i,n+m-1) cout << "0"; cout << endl; }else{ ll ret = A * B; if(ret <= -100000000LL || 100000000LL <= ret){ cout << "E" << endl; }else{ cout << ret << endl; } } return 0; }