EDIT: Hey I got the answer . The correct code is written below. As written as the answer, I should have kept the code in a try/except block I am trying to solve the "3n+1" a.k.a Collatz Conjecture problem at the SPOJ site. http://www.spoj.pl/problems/CLTZ/ . Here is the code I wrote : EDIT
import sys,os
#This is for the Collatz Conjecture problem in SPOJ.
while 1:
try:
line = sys.stdin.readline()
n=int(line)
except:
break
#print 'Line=',line
#n=int(line)
if(n==1):
print n
continue
else:
count=0
while(n!=1):
if(n%2==0):
n = n/2
count=count+1
else:
n= 3 * n + 1
count=count+1
print count+1
I am running into NZEC error. Some test cases that I have tried are :
123123
181
235
128
346
33
234
22
123
47
123
47
123
47
235
128
34
14
325
25
1234
133
123
47
125
109
I made the change which takes care of newline character . It still gives an error :( Please let me know where I am going wrong :(