fork(1) download
<?php
$answer = array(
	1     =>     'Da',
	2     =>      'Net',
	);
$quest = "Смогу ли я познакомится с ней?";
$random = array_rand($answer, 1);
$b1 = $answer[$random];
echo "Вопpос: $quest\n";
echo "Ответ: $b1\n";
// your code goes here
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Вопpос: Смогу ли я познакомится с ней?
Ответ: Net