Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
154338 周谨严 06数字拼接 C++ Accepted 1 MS 276 KB 125 2026-05-30 11:46:12

Tests(10/10):


Code:

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