using System;
using System.Collections.Generic;
using System.Text;
using System.Globalization;
class Program {
staticvoid Main(string[] args) {
CultureInfo ci = new CultureInfo("de-AT-ST");
System.Threading.Thread.CurrentThread.CurrentCulture = ci;
System.Threading.Thread.CurrentThread.CurrentUICulture = ci;
}
}