Run ID:143005
提交时间:2026-01-11 17:42:48
#include <iostream> #include <string> using namespace std; int main() { int a, b; cin >> a >> b; string concat = to_string(a) + to_string(b); int result = stoi(concat) * stoi(concat); cout << result << endl; return 0; }