using System;
public class Program
{
public static void Main()
var foo = 34;
var bar = 42;
Console.WriteLine($@"In case it wasn't clear:
\u00B9
The foo
is {foo},
and the bar
is {bar}.");
}