Project Euler Problem 16
Go here for question
#pe016 num = 2**1000 sum = 0 for i in str(num): sum += int(i) print(sum)