<?php function printRange(int $from, int $to) { for($i=$from; $i<=$to; $i++) echo "$i "; } printRange(1, 48); printRange(114, 118);
You have javascript disabled. You will not be able to edit any code.