//Lines 1-6 are required for C#.
using System;
public class Program
{
public static void Main()
//Statement 1: prints "what is your name"
Console.WriteLine("What is your name?");
// Statement 2: asks for user input
string name = Console.ReadLine();
/* TASK1: Print "What is the name of your school?"
using Console.WriteLine...look to Statement 1 above */
string school = Console.ReadLine();
}