using System;
public class Program
{
public static void Main()
int num = 100;
Change(num);
Console.WriteLine(num);
}
static void Change(int a)
a = 1;