using System;
public class Program
{
public static void Main()
//variables
string name="Ethan";
int age=14;
char lol='W';
double haha=1.1;
string answer;
bool check = false;
Console.WriteLine("My name is {0} and i am {1} years old", name,age );
while(check==false)
Console.WriteLine("Whats my name?" );
answer = Console.ReadLine();
if (answer == "Ethan")
Console.WriteLine("Good Job");
check=true;
}
else
Console.WriteLine("bad work u have");