function ano(){
    Hoje = new Date();
    Data = Hoje.getDate();
    Ano = Hoje.getFullYear();
    
    
    document.write(Ano);
}