using System.Numerics;
namespace WinFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
BigInteger x = BigInteger.Pow(3, 242);
MessageBox.Show("x = " + x);
}
}
}
/*
run:
x = 29063214161986986067637023528620257232321357468243916695175073145996989031241146647825183302277227705597018408555209
*/