public override bool Equals(object obj)
        {
            Diak other = obj as Diak;

            return(Name == other.Name && Age == other.Age);
        }
 static void Kiiras(Diak val)
 {
     Console.WriteLine(val);
 }