using System;
public class Program
{
public static void Main(string[] args)
string str = "dfsf, ";
if (str.EndsWith(", "))
str = str.Remove(str.Length - 2);
Console.WriteLine(str);
}