Run ID:1505

提交时间:2020-11-14 14:43:07

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