using System; using System.Text; namespace HTML { class MainClass { public static void Main(string[] args) { StringBuilder sb = new StringBuilder(); string title = Console.ReadLine(); sb.AppendLine("

"); sb.AppendLine(title); sb.AppendLine("

"); string content = Console.ReadLine(); sb.AppendLine("
"); sb.AppendLine(content); sb.AppendLine("
"); string comment = string.Empty; while((comment=Console.ReadLine())!="end of comments") { sb.AppendLine("
"); sb.AppendLine(comment); sb.AppendLine("
"); } Console.WriteLine(sb); } } }