using System;
public class Program
{
public static void Main()
float f = float.Parse(("1,75".Replace(',', '.')));
Console.WriteLine(f);
}