using System.Threading.Tasks;
public static void Main()
string result = Console.ReadLine();
Console.WriteLine("You typed: " + result);
static async void Example()
int t = await Task.Run(() => Allocate());
Console.WriteLine("Compute: " + t);
for (int z = 0; z < 100; z++)
for (int i = 0; i < 1000000; i++)
string value = i.ToString();