using System;
public class Program
{
// "Write a program that prints the numbers from 1 to 10, each on a separate line
// For every second number, also print “Car”,
// and for every third number, also print "Truck”,
// But for numbers which are both a car and a truck, print "Van" instead
public static void Main()
for ( int n = 1; n <= 10; n++ )
Console.Write(n);
// Your code goes here...
Console.WriteLine();
}