#include <bits/stdc++.h> using namespace std; string f(int a, int b){ int sum = a+b; string temp = to_string(sum); string s1 = to_string(a); string s2 = to_string(b); reverse(temp.begin(),temp.end()); reverse(s1.begin(),s1.end()); reverse(s2.begin(),s2.end()); return stoi(temp) == stoi(s1)+stoi(s2)?to_string(sum):"NO"; } int main() { int a, b; while (cin >> a >> b) { // 注意 while 处理多个 case cout<<f(a,b)<<endl; } } // 64 位输出请用 printf("%lld")
qd