using System;
public class Program
{
public static void Main()
{ //Comment //hctedyud
// WriteLine {* *} allows to write a full line
// Write{* *} allows us to write on the same line
//add 5+2 together
Console.WriteLine("5 + 2 = ");
Console.WriteLine("5" + "2" +"\n");
// \n writes new line
Console.WriteLine(5+2); //no quotes
Console.WriteLine("Hello Grade 11s" + "\n" + "How Are You");
//String concatenation- two strings give us a bigger string
Console.WriteLine("St." + " David's " + 2222*2222);
}