Run ID:123040
提交时间:2025-06-22 15:53:28
#include<bits/stdc++.h> using namespace std; int main() { int a , b; cin >> a >> b; int *p1 = &a , *p2 = &b; if(*p1 > *p2) cout << *p1 << " " << *p2; else cout << *p2 << " " << *p1; return 0; }