Search posts, tags, users, and pages
Varjinth subramaniyan
blogger
#python program to find the sum of digits of exponential numbers def sum(n): a=str(n) sum=0 for i in a: sum+=int(i) return sum print(sum(2**1000))
No responses yet.