/* goodG2B() - use goodsource and badsink */
        private void GoodG2B()
        {
            string data;

            data = ""; /* Initialize data */
            /* read user input from console with readLine */
            try
            {
                /* FIX: Read data from the console using readLine() */
                data = Console.ReadLine();
            }
            catch (IOException exceptIO)
            {
                IO.Logger.Log(NLog.LogLevel.Warn, "Error with stream reading", exceptIO);
            }
            CWE321_Hard_Coded_Cryptographic_Key__basic_53b.GoodG2BSink(data);
        }