function pulaLinha() {
document.write("<br><br>")
}
function mostra(frase) {
document.write(frase)
pulaLinha()
}
for(let c = 20; c >= 0; c--){
mostra(c)
}
mostra("FIM")