using System;
/*
You have been hired by the Walton Desney company to assign a
prime number to each of their many Desney characters. For
this assignment, write a program that will print all
numbers between 1 and 200 that are prime numbers, i.e. numbers
divisible only by themselves and the number one.
*/
public class Program
{
public static void Main()
for(int i=0; i<=200; i++)
if(i%2 == 0)
Console.WriteLine(i);
}