using System;
public class Program
{
public static void Main()
int x=10, y=5 , aux;
aux=x;
x=y;
y=aux;
Console.WriteLine("resultado x : "+ x.ToString("N2"));
Console.WriteLine("resultado y: {0}",y);
}