Quick actions

cmd+k|ctrl+k

Navigation

Languages

PE16

Snippet info

Language

Python

Visibility

public

Author

thanhtu250590

Created

2016-07-06T04:33:39Z

Updated

2016-07-06T04:33:39Z

char = list(str(2**1000))
sum_char = 0
for i in char:
    sum_char += int(i)
print(sum_char)
INFO