Merge pull request #195 from bT-53/master

Project Euler Solutions Added.
This commit is contained in:
Harshil 2017-10-30 09:20:33 +05:30 committed by GitHub
commit 4945623c05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,13 @@
'''
Problem Statement:
Work out the first ten digits of the sum of the N 50-digit numbers.
'''
n = int(input().strip())
array = []
for i in range(n):
array.append(int(input().strip()))
print(str(sum(array))[:10])