using System;
using System.Xml;
class XML1{
public static void Main(string[] arg){
XmlDocument d=new XmlDocument();
XmlElement juur=d.CreateElement("linnad");
d.AppendChild(juur);
d.Save(Console.Out);
d.Save("linnad.xml");
}
}
/*
D:\kodu\0606\dotnet>XML1
D:\kodu\0606\dotnet>type linnad.xml
*/