using System;
public class Program
{
public static void Main()
string str = "1,51,2 2,2 (52 225 35 6,2 1,8 210,64 6833 3,4 7,5 35,6 5 0,3 13,7 19,7 17,4 1,641 0,37 40 16,1 410,37)";
str = str.Replace("", "*");
str = str.Replace("", "+");
str = str.Replace("", "0");
str = str.Replace("", "3");
str = str.Replace("", "");
Console.WriteLine(str);
}