public static string QuestionFormat = "When do you plan to {0} eating the burger?";
public static void Main()
Console.WriteLine(String.Format(QuestionFormat, "start"));
Console.WriteLine(String.Format(QuestionFormat, "end"));
var a = Console.ReadLine();
Console.WriteLine("Then I'll be around there at " + a);