Select all the incorrect lines in the code below:
val a = BigInteger.valueOf(1) //1
val b = BigInteger.valueOf(62957291795228763406253098) //2
val c = BigInteger("62957291795228763406253098") //3
val d = BigInteger(1) //4
Pay attention to the types!