using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace verigoboost
{
class Program
{
static void Main(string[] args)
{
int n = 0;
while (n < 5) {
Thread.Sleep(1000);
Process.Start("C:\\Steam\\steam.exe");
n++;
}
Console.WriteLine("Все");
Console.ReadKey();
}
}
}