string message = age switch
< 3 => "What is that smell?",
< 15 => "Did you do your homework?",
< 25 => "When are you moving out?",
< 50 => "Why is the time passing so fast?",
< 65 => "Is it time to retire yet?",
_ => "What is that smell?"
string output = $@"Age: {age}
Console.WriteLine(output);
< 3 => "What is that smell?",
< 15 => "Did you do your homework?",
< 25 => "When are you moving out?",
< 50 => "Why is the time passing so fast?",
< 65 => "Is it time to retire yet?",
_ => "What is that smell?"
string updatedOutput = $@"Age: {age}
Console.WriteLine("\nUpdated Output:");
Console.WriteLine(updatedOutput);