public static void Main()
Console.WriteLine("HI! welcome to the safari app");
Console.WriteLine("Whats your name?");
name= Console.ReadLine();
Console.WriteLine("Whats your last name?");
last= Console.ReadLine();
Console.WriteLine("Hi " + name +(" ") + last );
Console.WriteLine("whats your age?");
age= int.Parse(Console.ReadLine());
Console.WriteLine("Lets do your username :D");
Console.WriteLine();Console.WriteLine("Please, write a username, with this name, other people can know who are you");
user= Console.ReadLine();
Console.WriteLine("Please, write another username, you cant use your name");
user2= Console.ReadLine();
Console.WriteLine("Welcome " + user2 + "!");
Console.WriteLine("Welcome " + user + "!");
Console.WriteLine("Sorry, you must have more than 18 years, to create an acount in here :(");