public static void Main()
string nome = "Anderson";
int anoNascimento = 1984;
Console.WriteLine("Olá " + nome + ", você tem aproximadamente " + (2021 - anoNascimento) + " anos.");
Console.WriteLine($"Olá {nome}, você tem aproximadamente {(2021 - anoNascimento)} anos.");