This is a paragraph
"Any program can be regarded as simply an adequate description of a process, and it's this process which one should really discuss."
- Alan Turing, "Computing Machinery and Intelligence" (1950)
using System;
class SimpleMath
{
static void Main()
{
int x = 5;
int y = 3;
Console.WriteLine("The sum of {0} and {1} is {2}.", x, y, x + y);
Console.WriteLine("The difference between {0} and {1} is {2}.", x, y, x - y);
Console.WriteLine("The product of {0} and {1} is {2}.", x, y, x * y);
}
}