<?php

function f($N){for($X=2;$N-->0;$X=gmp_nextprime($X))echo ($X)."\n";}

f(100);
?>