using System;
using System.Text;
public class Program
{
public static void Main()
StringBuilder result = new StringBuilder();
result.Append("packer");
result.Append(", ");
if (result.Length > 0)
result.Remove(result.Length - 2, 2);
}