#include using namespace std; int main(){ string a,b; cin>>a>>b; if (b == "0") { cout << 1 << endl; return 0; } int x = a[a.length() -1] - '0'; int y = b[b.length() -1] - '0'; if(b.length() >= 2) y += 10 * (b[b.length() -2] - '0'); if (b.length() >= 3) y+=100; int s = 1; for(int i=0;i