Saturday, May 25, 2013

1. Life, the Universe, and Everything

http://www.spoj.com/problems/TEST/

CODE

while(True):
    n=int(input())
    if(n==42):
        break
    else:
        print(n)

No comments:

Post a Comment