csharp
using System;

class Program
{
    static void Main()
    {
        int num1 = 10;
        int num2 = 20;

        int sum = num1 + num2;

        Console.WriteLine("Sum = " + sum);
    }
}

Comments (0)

No comments yet. Be the first to share your thoughts!
Leave a Comment
Comments are reviewed before being published.