User:Sridharinfinity/Programming Contests/Sphere Source/1
Jump to navigation
Jump to search
# 1. Life, the Universe, and Everything
# Problem code: TEST
process = True
while 1:
try:
num = raw_input()
if process:
num = int(num)
if num != 42:
print num
else:
process = False
except EOFError:
raise SystemExit