Would be useful to translate this: ``` int x = 1 ``` into this: ``` BigInteger x = BigInteger.ONE; ``` rather than this: ``` BigInteger x = BigInteger.valueOf(1); ```
Would be useful to translate this:
into this:
rather than this: