A Very Big Sum

  • + 0 comments

    with open('D:/INC/R/Python/long_num.txt') as a: d=0 b = a.read() e = b.split(" " )

    for i in e:
        e1 = int(i)
        d = d + e1
    
    print(d)