#include using namespace std; bool is_100(long long x){ if(x==0)return false; if(x<0)x=-x; int n=0; while(x%10==0){ x/=10;n++; } if(x<10 && n>1)return true; else return false; } int main(){ long long A,B; cin >> A >> B; if(is_100(A) && is_100(B)){ cout << A*B/10 << endl; }else{ if(-1e8