<script>
function skip (){
document.write ('<br><br>');
}
function show (frase){
document.write (frase);
skip();
}
let c = 20
while (c >= 0){
show (c)
c--
}
show ('FIM!')