public static void Main()
Console.WriteLine("Dinda Ravi Algifari - XSIS - Answer Logic Questions \nInput example : 1.225.441 or 1225441 (Press 'enter' to get the result.)");
Console.Write("Input here :");
string A = Console.ReadLine();
Console.WriteLine("Result : ");
var cArr = A.ToCharArray();
if(cArr.Any(e=>e == '.')){
cArr = cArr.Where(e=>e != '.').ToArray();
int length = cArr.Length-1;
Console.WriteLine((int.Parse(i.ToString())*Math.Pow(10,length)));