/******************************************************************************
Online C# Compiler.
Code, Compile, Run and Debug C# program online.
Write your code in this editor and press "Run" button to execute it.
*******************************************************************************/
using System;
class HelloWorld {
static void Main() {
for (int i = 100; i >= 80; i= i -2)
{
Console.Write(i + ", ");
}
}
}