using System;
public class Program
{
public static void Main()
for (int i = 10; i > -2; i--) {
if (i == 1) {
Console.WriteLine("The rocket will launch in 1 second");
}
else if (i == -1) {
Console.WriteLine("Rocket Launched!");
else {
Console.WriteLine("The rocket will launch in "+i+" seconds");