Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90865 陈骏睿 02数字拼接 C++ Compile Error 0 MS 0 KB 125 2024-09-17 16:00:25

Tests(0/0):


Code:

s/stdc++.h> using namespace std; int main() { long long a,b; cin>>a>>b; cout<<(a*10+b)*(a*10+b)<<endl; return 0; }


Run Info:

Main.cc:1:1: error: 's' does not name a type
 s/stdc++.h>
 ^
Main.cc: In function 'int main()':
Main.cc:6:1: error: 'cin' was not declared in this scope
 cin>>a>>b;
 ^
Main.cc:7:1: error: 'cout' was not declared in this scope
 cout<<(a*10+b)*(a*10+b)<