Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
85065 sh25_zhuhy 两变量交换数据 C++ 无测评数据 0 MS 0 KB 127 2026-03-06 14:49:06

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<b<<a; return 0; }