using System;
public class Program
{
public static void Main()
Console.WriteLine("Please make a sentence with the word 'no' in it: ");
string mystring = Console.ReadLine();
//convert the word no to yes
mystring = mystring.Replace("no","yes");
Console.WriteLine(mystring);
}