using System;
class Program
{
static void Main() {
Console.WriteLine("\"" + (String.Format("{0,12:0.0}", 1238.4567)) + "\"");
Console.WriteLine("\"" + String.Format("{0,-12:0.0}", 1238.4567) + "\"");
Console.WriteLine("\"" + String.Format("{0,12:0.0}", -1238.4567) + "\"");
Console.WriteLine("\"" + String.Format("{0,-12:0.0}", -1238.4567) + "\"");
}
}
/*
run:
" 1238.5"
"1238.5 "
" -1238.5"
"-1238.5 "
*/