using System;
using System.Collections.Generic;
using System.Diagnostics;
class MainClass {
static void Main() {
List processes = new List();
foreach (Process process in Process.GetProcesses())
processes.Add(process.ProcessName);
}
}