using System;
public class Program
{
public static void Main()
int x = 45;
Pass(ref x);
Console.Write(x)
}
public static void Pass ()
int x = x * x;