Run ID:102588
提交时间:2024-12-22 11:42:36
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; a=3, b=5; c=a; a=b; b=c; return 0; }