/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
using System;
public class HelloWorld
{
public static void Main(string[] args)
int i=0;
Console.WriteLine ("Hello Mono World");
Console.WriteLine("display the frst n even number");
int n = Convert.ToInt32(Console.ReadLine());
for(i=0;i<=n;i++)
Console.WriteLine( "{0}",i);
}