using System;
public class Program{
public static void Main(){
Console.WriteLine("What is your name?");
string name = Console.ReadLine();
//Exercise. Get the input from the user. If the user is bob display welcome admin! By default display welcome student
switch (name){
case "Bob":
Console.WriteLine("Hello Admin");
break;
case "John":
Console.WriteLine("Hello User");
default:
Console.WriteLine("Welcome student");
}