public class SpeedCategory
public static string GetSpeedCategory(int speed)
return "Speed exceeds maximum limit.";
public static void Main()
Console.WriteLine("Enter speed:");
int speed = int.Parse(Console.ReadLine());
string category = GetSpeedCategory(speed);
Console.WriteLine(string.Format("The speed is: {0}", category));