Codeforces Round 944 (Div. 4) A. My First Sorting Problem Codeforces Round 944 (Div. 4) A. My First Sorting Problem 1234567891011121314151617181920212223// By SnowDream#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e6+10;int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; int x,y; while(t--) { cin >> x >> y; if(x<y) cout << x << " " << y; else cout << y << " " << x; cout << "\n"; } return 0;} Codeforces #Codeforces Round 944 (Div. 4) Codeforces Round 944 (Div. 4) A. My First Sorting Problem http://snowdreamxue.github.io/2024/10/21/Codeforces Round 944 (Div. 4)/A. My First Sorting Problem/ Author SnowDream Posted on October 21, 2024 Licensed under Codeforces Round 937 (Div. 4) D. Product of Binary Decimals Previous Codeforces Round 944 (Div. 4) B. Different String Next