using System;
public class Program
{
public static void Main(string[] args)
int a=90 , b=29;
calc c = new calc();
int r=c.add(ref a , ref b);
Console.WriteLine("result={0}\n",r);
Console.Read();
}
class calc{
public int add(ref int y, ref int z)
return (y+z);