Run ID:102587
提交时间:2024-12-22 11:41:48
#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; }