Run ID:5868
提交时间:2024-12-20 17:48:57
#include <bits/stdc++.h> using namespace std; int main() { int a, b, c, temp, temp1; cin >> a >> b >> c; temp = a; temp1 = b; a = c; b = temp; c = temp1; cout << a<<endl; cout << b<<endl; cout << c<<endl; return 0; }