using System;
public class Program
{
public static void Main()
int x = 5, y = 3;
if (x > y)
x = 2*x*y;
Console.WriteLine("x = " + x);
x = 5;
y = (x+y)/2;
Console.WriteLine("y = " + y);
Console.ReadLine();
}
else
x = (x+y)/2;
y = 2*x*y;