using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
new Thread(Go).Start();
Go();
}
static void Go()
{
for (int cycles = 0; cycles < 5; cycles++)
{
Console.Write('?');
}
}
}
}
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
new Thread(Go).Start();
Go();
}
static void Go()
{
for (int cycles = 0; cycles < 5; cycles++)
{
Console.Write('?');
}
}
}
}