using System;
public class Program
{
static void Main(string[] args)
}
enum Color { red, green, blue, yellow };
static string SuperheroFromColor(Color c)
switch (c)
case Color.blue: return "1";
case Color.red: return "2";
case Color.green: return "3";
throw new Exception();