public static void Main()
Console.WriteLine("This program was made by Group 1 of 9B to assist you by displaying the level of health concern when given the AQI");
Console.WriteLine("Enter the AQI of the area:");
aqi = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Your air quality is hazardous.");
Console.WriteLine("Your air quality is very unhealthy.");
Console.WriteLine("Your air quality is unhealthy.");
Console.WriteLine("Your air quality is unhealthy for sensitive groups.");
Console.WriteLine("Your air quality is moderate.");
Console.WriteLine("Your air quality is good.");
else {Console.WriteLine ("Negative numbers are not allowed to be entered");}
Console.WriteLine("Make sure to stay safe & avoid using items with harmful components that can affect the air quality! Together we can make change!");