public static void Main(string[]args){
Console.WriteLine("Hello User! ");
Console.Write("Your input: ");
int y = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Your name is " + inf.fullname);
Console.Write("Enter your birth year: ");
int byear = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Your age is "+ inf.getAge(byear));
Console.WriteLine("------------------------------------");
Console.WriteLine("PROGRAM ENDED");
Console.WriteLine("------------------------------------");
public string fullname = "Juan Dela Cruz";
public int getAge (int x){
public void showOptions(){
Console.WriteLine("Choose from the following: ");
Console.WriteLine("1. Show");
Console.WriteLine("2. Compute");
Console.WriteLine("3. Exit");