using System;
public class WhileDownwards
{
public static void Main(string[] args)
int n = 15;
while (n >= 7)
Console.WriteLine(n);
n--;
}