using System;
public class Program
{
public static void Main()
int i=10;
Fun(ref i);
Console.WriteLine(i);
}
public static void Fun(ref int j)
j=j*2;