I need to convert this 50 digit string 53503534226472524250874054075591789781264330331690
into the appropriate number type. I tried this:
let str = "53503534226472524250874054075591789781264330331690"
let num = str.toInt(); // Returns nil
let num = Int64(str.toInt()); // Errors out