public string fun(string s)
{
switch(s)
{
case "hello":
return "HelloWorld";
case "good":
return "goodboy";
case "care":
return "careful";
}
}