#include #include #include #include #include #include #include #include #include #include #include using namespace std; bool isExplike(long long a) { a = abs(a); if (a<100) { return false; } while (a >= 10) { if (a % 10 == 0) { a /= 10; } else { return false; } } return true; } int main() { long long a, b; cin >> a >> b; bool isE = false; if (isExplike(a) && isExplike(b)) { isE = true; } long long ans = a*b; if (isE) { cout << ans/10 << endl; return 0; } if (ans >= -99999999 && ans <= 99999999) { cout << ans << endl; } else { cout << "E" << endl; } return 0; }