using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Swap
{
internal class Program
{
static void Main(string[] args)
{
int x, y, temp;
x = Convert.ToInt32(Console.ReadLine());
y = Convert.ToInt32(Console.ReadLine());
if (x > y) {
temp = x;
x = y;
y = temp;
}
Console.WriteLine(" Swap start from smaller to biggest => {0} \t {1} ", x , y) ;
}
}
}
- ۹۶/۰۶/۱۷