Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90991 翁思宸 02数字拼接 C++ Accepted 1 MS 272 KB 158 2024-09-20 19:26:16

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ long long q1,q2,q3; cin>>q1; cin>>q2; cout<<(q1*10+q2)*(q1*10+q2); return 0; }