using System;
public class Program
{
public static void Main()
Console.WriteLine($"Hello dude. \nWanna play?");
string answer = Console.ReadLine();
if answer == "Yes";
Console.WriteLine("I knew that you will wanna do it.");
elif answer == "No";
Console.WriteLine("May be next time?");
}