public static void Main()
string input = Console.ReadLine();
if (input == "Going home")
stepsToHome = int.Parse(Console.ReadLine());
else if (input != "Going home")
steps = int.Parse(input);
goal -= steps + stepsToHome;
Console.WriteLine("Goal reached! Good job!");
Console.WriteLine($"{goal} more steps to reach goal.");