diff --git a/Project Euler/Problem 16/Sol_16 Easy.py b/Project Euler/Problem 16/Sol_16 Easy.py new file mode 100644 index 000000000000..1fdcb7c93006 --- /dev/null +++ b/Project Euler/Problem 16/Sol_16 Easy.py @@ -0,0 +1,2 @@ +for i in range(int(input())): + print(sum([int(i) for i in list(str(2**int(input())))]))