#!/usr/bin/env js91 // メッセージ const message = new Map(); message.set("opening", "Guess the number!"); message.set("prompt", "Please input your guess."); message.set("failure", "Failed to read line"); message.set("guess", "You guessed: "); message.set(true, "Too small!"); message.set(false, "Too big!"); message.set("win", "You win!"); // 環境 class World { constructor(guess, secret_number, ordering) { this.guess = guess; this.secret_number = secret_number; this.ordering = ordering; } } // 初期化 function init(max) { let w = new World(Infinity, Math.floor(Math.random() * max) + 1, ""); console.log(message.get("opening")); return w; } // Read function read(prompt) { console.log(prompt); return readline(); } // Eval function world_go(x, env) { if (x == env.secret_number) { throw new Error(message.get("win")); } else if (typeof Number(x) === NaN) { throw new Error(message.get("failure")); } else { let w = new World(x, env.secret_number, x < env.secret_number); return w } } function print(env) { console.log(message.get("guess") + env.guess); console.log(message.get(env.ordering)); return env; } // Main関数(REPL) function main(env) { while (true) { try { env = print(world_go(read(message.get("prompt")), env)); } catch (ex) { switch(ex.message) { case message.get("win"): console.log(ex.message); throw new Error(); case message.get("failure"): env; } } } } main(init(100));
Standard input is empty
Guess the number! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input your guess. You guessed: null Too small! Please input you