Renamed all folders

This commit is contained in:
2021-04-16 16:58:48 +02:00
parent dbc6cfef05
commit 197b3eea8a
62 changed files with 0 additions and 0 deletions

20
016/main.py Normal file
View File

@@ -0,0 +1,20 @@
import os
import math
import numpy as np
# Find the sum of all the digits of 2 ^ 1000
def main():
print("Hello, this is Patrick")
p = pow(2, 1000)
s = str(p)
r = 0
for c in s:
r = r + int(c)
print(r)
if __name__ == "__main__":
main()