Learn from yesterday, live for today, hope for tomorrow.
BigInteger a, b, c; a = BigInteger.Parse(textBox1.Text); b = BigInteger.Parse(textBox2.Text); c = a + b; textBox3.Text = c.ToString();
BigInteger a, b, c;
ReplyDeletea = BigInteger.Parse(textBox1.Text);
b = BigInteger.Parse(textBox2.Text);
c = a + b;
textBox3.Text = c.ToString();