Easy problem, 1366

This commit is contained in:
2020-04-09 02:26:01 +02:00
parent cb444f8946
commit 44322645d0

19
16/main.py Normal file
View File

@@ -0,0 +1,19 @@
import os
import math
import numpy as np
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()