using System;
public class Program
{
public static void Main()
// 1) Create a program that generates a random number 1-20, and prompts the user to guess the number until the correct number is given
// 2) After you have the program working, create a line that notifies a user they are close if their guess is within 3 of the random number
// 3) In addition to the prompt in 2, store the previous guess and let the user know if the new guess is warmer or colder
// 4) Swap out whichever form of loop logic you used for a different one, i.e. change for to while, or while to do while
}