using System.Collections;
using System.Collections.Generic;
public static void Main()
int n=Convert.ToInt32(Console.ReadLine());
int id=Convert.ToInt32(Console.ReadLine());
string name=Console.ReadLine();
int age=Convert.ToInt32(Console.ReadLine());
string number=Console.ReadLine();
int sal=Convert.ToInt32(Console.ReadLine());
var vehi=new Employee(id,name,age, number,sal);
int ch=Convert.ToInt32(Console.ReadLine());
int ans1=Organisation.MinAge();
double temp=Organisation.Avg();
double result=Math.Round(temp, 1);
Console.WriteLine(result);
public string name{get;set;}
public string number{get;set;}
public Employee(int id,string name,int age,string number,int sal)
public static class Organisation
public static List<Employee> nl2=new List<Employee>();
public static void Add(Employee p)
public static int MinAge()
int minage = int.MaxValue;
foreach (Employee p in nl2)
public static double Avg()
foreach (Employee p in nl2)