using System;
public class Program
{
public static void Main()
int a = 5;
Foo(a);
Console.WriteLine(a);
}
static void Foo(int x){
x = 6;