using System;
public class Program
{
public static void Main()
Console.WriteLine("what is your name?");
var anwser2 = Console .ReadLine();
if (anwser2 == "theo" )Console.WriteLine("good person");
if (anwser2 != "theo" )Console.WriteLine("wrong");
}