using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
const string format = "{0,-10} {1,10}";
string s1 = string.Format(format, 13, 431);
string s2 = string.Format(format, "java", "c#");
string s3 = string.Format(format, "c++", "python");
Console.WriteLine(s1);
Console.WriteLine(s2);
Console.WriteLine(s3);
}
}
}
/*
run:
13 431
java c#
c++ python
*/