<?php
function casalExponencial($i) {
if ($i==1) {
return 1;
}
if ($i==2) {
return 1;
}
return casalExponencial($i - 1) + casalExponencial($i - 2);
}
$entrada = (int) trim(fgets(STDIN));
echo casalExponencial($entrada);
?>
To embed this project on your website, copy the following code and paste it into your website's HTML: