/* goodG2B() - use goodsource and badsink */
        private static void GoodG2B(HttpRequest req, HttpResponse resp)
        {
            int data = CWE191_Integer_Underflow__int_Get_Cookies_Web_sub_61b.GoodG2BSource(req, resp);
            /* POTENTIAL FLAW: if data == int.MinValue, this will overflow */
            int result = (int)(data - 1);

            IO.WriteLine("result: " + result);
        }