string str;
getline(cin, str);
string temp;
temp+=str[0];
string temp1;
temp1+=str[str.length()-1];
cout << atoi(temp1.c_str())+atoi(temp.c_str());
string str;
getline(cin, str);
string temp;
temp+=str[0];
string temp1;
temp1+=str[str.length()-1];
cout << atoi(temp1.c_str())+atoi(temp.c_str());