using System;
public class Program
{
public static void Main()
int a = 5;
int b = 7;
(a, b) = (b, a);
Console.WriteLine($"a: {a}, b: {b}");
}