using System;
public class Program
{
public static void Main()
String color = "red"; // try red or blue
String carType = "sports"; // try van, sports, or sedan
if (carType == "van")
Console.WriteLine("You are cool, no ticket");
}
else
Console.WriteLine("You are getting a ticket");
if(color == "red")
Console.WriteLine("Red cars always get a ticket");
if(carType != "sedan")
Console.WriteLine("You should have gotten a sedan");