using System;
using System.Xml;
using System.Collections.Generic;
using System.Text;
class Program
{
staticvoid Main(string[] args)
{
XmlDocument docItems = new XmlDocument();
docItems.Load("items.xml");
XmlNodeList cw = docItems.SelectNodes("//attribute[@name='capacity'] | //attribute[@name='weight']");
Console.WriteLine("Heavy Items (descendant axis predicate):");
}
}