using System;
public class Program
{
public static void Main()
//Invoer
int Getal = 1;
string Tekst = "";
//Verwerken
while (Getal <= 10)
Tekst += Getal + " - ";
Getal++;
}
//Uitvoer
Console.WriteLine(Tekst);