using System;
public class Program
{
public static void Main()
// Ints
int [] numbers = {2, 3, 5, 7};
foreach (int i in numbers){
Console.Write(" "+i);
} Console.WriteLine();
// String
string[] towns = {"London", "Paris", "Milan", "New York"};
foreach (string town in towns){
Console.Write(" "+ town);
}