<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">class Pessoa {
  private int 		ano_de_nascimento;
  private String 	nome, sobrenome;
  private boolean	casado = false;
  int século_de_nascimento() {
    return ano_de_nascimento;
  }
  int idade(int ano_corrente) {
    return ano_de_nascimento;
  }
}</pre></body></html>