using System;
public class Program
{
public static void Main()
string str = "-5";
decimal d;
decimal.TryParse(str, out d);
Console.WriteLine(d);
}