using System;
public class Students
{
public void Print<T>(T age, T mark)
Console.WriteLine("The AGE & MARK is {0}, {1}", age, mark);
}
public class Program
public static void Main()
Students room = new Students();
room.Print<int>(18 , 48);
room.Print<int>(19,45);