计算


7 月 1 日是建党日,从 1921 年到 2020 年,中国***已经带领中国人民
走过了 99 年。
请计算: 7 2020 7^{2020} 7
2020
mod 1921,其中 A mod B 表示 A 除以 B 的余数。

BigInteger c=new BigInteger("7").pow(2020).mod(new BigInteger("1921"));
System.out.println(c);