namespace SpeedLimitCamera
public static int SpeedLimit(int Speed)
int Marginal = Limit + 10;
Console.WriteLine("You are below Speed Limit");
else if (Speed <= Marginal)
Console.WriteLine("You are over the speed limit, slow down!!");
Console.WriteLine("You are speeding!!");
static void Main(string[] args)
Console.WriteLine($"Your speed is : {SpeedLimit(Speed)}. ");