using System;
public class Program
{ // thisisnotanexampleofhowtousecamelcase
// thiIsAnExampleOfHowToUseCamelCase
public static void Main()
{
Console.Write("What is your name:");
String myName = Console.ReadLine();
Console.WriteLine("Hello " + myName);
if (myName=="Mr P")
Console.Write("Woooow you are so amazing, I just love you ");
}