using System;
namespace Loops
{
public class Loops
public static void Main(string[] args)
int i = 10;
while (i < 11 && i > 1)
Console.WriteLine("The rocket will launch in " + i + " seconds");
i--;
}
Console.WriteLine("The Rocket will launch in a second");
Console.WriteLine("The Rocket has launched");