        private void button1_Click(object sender, EventArgs e)
        {
            Random rand = new Random();
            Constants conValue = new Constants(rand.Next(1, 20));
            label1.Text = "Radius = " + conValue.radius +
                "\n Circumference = " +
                2 * Constants.PI * conValue.radius;
        }
