using System;
public class Program
{
public static void Main()
int num = 3;
switch(num) {
case 1: Console.WriteLine("You got a new car");
break;
case 2: Console.WriteLine("You got a new plane");
case 3: Console.WriteLine("You got a new bike");
}
Console.WriteLine("Домашна задача class 2, exercise 7");