赞
踩
#include <iostream>using namespace std; int main() { int A, B; cin >> A >> B; int temp = A; A = B; B = temp; cout << A << " " << B << endl; return 0;}