Run ID:138961
提交时间:2025-11-30 13:11:45
#include <bits/stdc++.h> using namespace std; int main() { int a, b, c, d; cin >> a; cin >> b; c = a * 10 + b; d = c * c; cout << d; return 0; }