using System;
public class Program
{
public static void Main()
string nbaTeam = "Rockets";
switch (nbaTeam)
case "Warriors":
Console.WriteLine("Does it count if you buy it?");
break;
case "Rockets":
Console.WriteLine("What happens when the 3's stop falling?");
case "Spurs":
Console.WriteLine("You're going to win the championship!");
}