using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
const string format = "{0, -13} {1, 13}";
string s1 = string.Format(format, 982, 16);
string s2 = string.Format(format, "csharp", "python");
Console.WriteLine(s1);
Console.WriteLine(s2);
}
}
}
/*
run:
982 16
csharp python
*/