public void input(string x, int y)
class Person_BornYear : Person
public string printname()
public static void Main()
Console.WriteLine("Enter name :");
string Name = Console.ReadLine();
Console.WriteLine("Enter age :");
int Age = Convert.ToInt32(Console.ReadLine());
Person_BornYear Person_1 = new Person_BornYear();
Person_1.input(Name, Age);
Console.WriteLine(Person_1.printname() + " was born in " + Person_1.getyear());