using System;

class Program
{
    static void Main()
    {
        int num1 = 5;
        int num2 = 3;
        int sum = num1 + num2;
        Console.WriteLine("Sum: " + sum);
    }
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: