using System;
public class Program
{
public static void Main()
Console.WriteLine("Qual é o seu nome completo?");
string userName = Console.ReadLine();
// Print the value of the variable (userName), which will display the input value
Console.WriteLine("Username is: " + userName);
}