/* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            uint data = CWE190_Integer_Overflow__UInt32_console_readLine_add_61b.GoodG2BSource();
            /* POTENTIAL FLAW: if data == uint.MaxValue, this will overflow */
            uint result = (uint)(data + 1);

            IO.WriteLine("result: " + result);
        }
        public override void Bad()
        {
            uint data = CWE190_Integer_Overflow__UInt32_console_readLine_add_61b.BadSource();
            /* POTENTIAL FLAW: if data == uint.MaxValue, this will overflow */
            uint result = (uint)(data + 1);

            IO.WriteLine("result: " + result);
        }
        /* goodB2G() - use badsource and goodsink */
        private static void GoodB2G()
        {
            uint data = CWE190_Integer_Overflow__UInt32_console_readLine_add_61b.GoodB2GSource();

            /* FIX: Add a check to prevent an overflow from occurring */
            if (data < uint.MaxValue)
            {
                uint result = (uint)(data + 1);
                IO.WriteLine("result: " + result);
            }
            else
            {
                IO.WriteLine("data value is too large to perform addition.");
            }
        }