Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104436 Hope 02数字拼接 C++ Accepted 1 MS 268 KB 175 2025-01-04 20:52:05

Tests(10/10):


Code:

#include <iostream> using namespace std; int main() { long int a, b; cin >> a >> b; long int c = a * 10 + b; cout << c * c << endl; return 0; }