int a = int.Parse(Console.ReadLine()); int b = int.Parse(Console.ReadLine()); if (a > b) (a, b) = (b, a); Console.WriteLine($"{a} {b}");