using System;
using System.Globalization;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
int n = 1389;
double d = 3.14;
string s1 = n.ToString();
string s2 = n.ToString(NumberFormatInfo.InvariantInfo);
Console.WriteLine(s1 + " " + s2);
s1 = d.ToString();
s2 = d.ToString(NumberFormatInfo.InvariantInfo);
Console.WriteLine(s1 + " " + s2);
}
}
}
/*
run:
1389 1389
3.14 3.14
*/