#pragma GCC optimize("Ofast") #include #include #include #include #include #include #include #include #include const long long INFL = 1e17+7; const long long INFI = 1e9+7; const long long MOD = 1e9+7; const double EXP = 1e-8; const double PI=acos(-1); using namespace std; int main(){ cin.tie(0); ios::sync_with_stdio(false); int a,b; cin >> a >> b; int a_keta=0; int a_temp=a; while(1){ if(a_temp%10!=0)break; a_temp/=10; a_keta++; } int b_keta=0; int b_temp=b; while(1){ if(b_temp%10!=0)break; b_temp/=10; b_keta++; } if(a_keta>0 && b_keta>0){ long long ans=a_temp*b_temp; cout << ans; for(int i=0;i