using System;
public class Program
{
public static void Main()
/*
GOAL:
Print out to console the following sentence:
"My name is <your-name> and I started programming today!"
TIPS:
Use the Console.WriteLine("Sentence here in quotes");
Don't forget the semicolon in the end of each line.
*/
Console.WriteLine("My name is Monika and I started programing today!");
}