using System;
public class Program
{
static void byval(int x)
x = 50;
}
public void Main(string[] args)
int y = 15;
byval(y);
Console.WriteLine(y);