using System;
using System.Diagnostics;
public class Program
{
public static void Main()
int x = 10;
int y = 20; (x,y)=(y,x);
Console.WriteLine($"{x} {y}");
Debug.Assert(x == 20);
Debug.Assert(y == 10);
}