TEST - Life, the Universe, and Everything

Your program is to use the brute-force approach in order to find the Answer to Life, the Universe, and Everything. More precisely... rewrite small numbers from input to output. Stop processing input after reading in the number 42. All numbers at input are integers of one or two digits.

Example

Input:
1
2
88
42
99

Output:
1
2
88

Information

In case of any problems with your code, you can take a look in the forum, you'll find the answer, only for this problem, in various languages.


Added by:mima
Date:2004-05-01
Time limit:10s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:Douglas Adams, The Hitchhiker's Guide to the Galaxy

hide comments
2022-08-17 10:43:19
please suggest me is this website is good for practice !=
2022-08-07 04:12:02
Please anyone can tell me which one is javascript compiler--> javascript (rhino 1.7.9)
Or javascript(SMonkey 60.2.3)
2022-07-19 22:01:05
In java Make array store number and make loop till specific value
2022-07-19 14:09:36
Accept it till while loop is true and break the loop the moment you get the value of x=42, you are done.
2022-07-18 05:43:56
wtf is this xd
2022-07-10 11:21:00
i have a solution in O(n log n) but i am getting tle pls help i am using html
2022-06-27 04:28:07
Wth what I/O is it?
2022-04-19 15:26:46
Guys it's literally as easy it appears to be. Just accept input numbers until you get 42, and then print all the numbers in the exact same order you received it in the input. In other words, store everything in a vector / array until 42, and then with a for loop just print every element from the array / list / vector
2022-04-12 23:15:07
Really poor definition of this task cousing a lot of confusion.
What is input? Stdin, console, file?
Same regarding output.
Shown example: is it 5 lines input or what?
2022-03-18 22:55:59
It needs to be clearer how to accept the input. If it's stdin, you need to say so
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.