Improved Code and removed Warnings (#483)

This commit is contained in:
Parth Shandilya
2018-10-19 14:00:31 +05:30
committed by GitHub
parent 07451a6ca4
commit 5d1f72604d
36 changed files with 67 additions and 67 deletions

View File

@@ -1,7 +1,7 @@
import sys
def main():
LargestProduct = -sys.maxsize-1
number=input().strip()
number=raw_input().strip()
for i in range(len(number)-13):
product=1
for j in range(13):