<?php

$n = 3;
// your code goes here
for ($x = $n; $x <= 10; $x++) {
	echo "$x";
}