EXPECT - Life, the Universe, and Everything (Interactive)

no tags 

Note for Interactive problem setters: if you are stucked on how to write a interactive problem judge, you may send a mail to "blue.mary.me@qq.com". It will send you the custom judge of this problem.

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.

Interactive Protocol

You should communicate with Judge using standard input and output.

Attention: the program should clear the output buffer after printing each line.

It can be done using fflush(stdout) command or by setting the proper type of buffering at the beginning of the execution - setlinebuf(stdout).

Each time the judge will give you a number. You should rewrite this number to standard output. If this number equals 42, after rewriting your program should terminate immediately.

Example

The example of communication.

Input:
3
15
42

Output:
3
15
42

Attention: the program should clear the output buffer after printing each line.

Reference

Please pay attention that: your program should NOT output any extra characters like "J","P" or “:". Follow the interactive protocol strictly. A sample program (in C++) that can get Accepted is as the following:


hide comments
nss_007: 2017-11-08 14:49:15

not sure why the source code is given as reference?

kalyanakrishr1: 2017-11-06 16:34:11

how to fflush in c++

Lionel Messi: 2017-11-06 04:27:19

what is the purpose or meaning of this problem? :-?

stoneark: 2017-10-11 11:53:01

It seems that there's no way to flush stdout in Swift... Anyone has ideas?

vinodjatav: 2017-08-21 20:34:42

simple

prog_pyp: 2017-06-22 12:35:17

.

Last edit: 2017-06-22 12:36:12
Aritra Chatterjee: 2017-05-17 15:51:43

Done feeling happy :-)


Added by:Fudan University Problem Setters
Date:2008-05-24
Time limit:10s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: C99 ERL GOSU JS-RHINO NODEJS PERL6 VB.NET
Resource:A sample of Interactive problems