/*
A hello world program for the 2020 students
*/
using System;
public class Program
{
public static void Main()
// this is where the program goes!
Console.WriteLine("Hello Immersive Systems Design!");
}