Correction: File solv3.py

I have remove some semicolons. line 11, 12 and 42
This commit is contained in:
Christian Bender 2017-11-19 15:06:42 +01:00 committed by GitHub
parent 567f2adab8
commit a5c954ff6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,8 +8,8 @@ Find the sum of all the multiples of 3 or 5 below N.
This solution is based on the pattern that the successive numbers in the series follow: 0+3,+2,+1,+3,+1,+2,+3.
'''
n = int(raw_input().strip())
sum=0;
num=0;
sum=0
num=0
while(1):
num+=3
if(num>=n):
@ -39,4 +39,4 @@ while(1):
if(num>=n):
break
sum+=num
print sum;
print sum